diff options
-rw-r--r-- | sql/updates/world/2013_07_02_00_world_gossip.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/2013_07_02_00_world_gossip.sql b/sql/updates/world/2013_07_02_00_world_gossip.sql new file mode 100644 index 00000000000..3537ddb0f82 --- /dev/null +++ b/sql/updates/world/2013_07_02_00_world_gossip.sql @@ -0,0 +1,15 @@ +-- I sense you've cleared the path to my brethren. My connection to them and to the temple is still strong. Do you wish to delve deeper inside? +UPDATE `creature_template` SET `gossip_menu_id`=8750 WHERE `entry`=23411; +DELETE FROM `gossip_menu` WHERE `entry`=8750 AND `text_id`=11081; +INSERT INTO `gossip_menu` (`entry`, `text_id`) VALUES (8750, 11081); +DELETE FROM `gossip_menu_option` WHERE (`menu_id`=8750 AND `id`=1); +INSERT INTO `gossip_menu_option` (`menu_id`, `id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`box_text`) VALUES +(8750, 1, 0, 'Take me to the other Deathsworn, Olum.', 1, 1, ''); + +-- The time has come to face Illidan, $N. Are you ready? +UPDATE `creature_template` SET `gossip_menu_id`=8713 WHERE `entry`=23089; +DELETE FROM `gossip_menu` WHERE `entry`=8713 AND `text_id`=10960; +INSERT INTO `gossip_menu` (`entry`, `text_id`) VALUES (8713, 10960); +DELETE FROM `gossip_menu_option` WHERE `menu_id`=8713 AND `id`=0; +INSERT INTO `gossip_menu_option` (`menu_id`, `id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`box_text`) VALUES +(8713, 0, 0, 'I''m ready, Akama.', 1, 1, ''); |