diff options
author | Vincent_Michael <Vincent_Michael@gmx.de> | 2013-10-19 03:23:53 +0200 |
---|---|---|
committer | Vincent_Michael <Vincent_Michael@gmx.de> | 2013-10-19 03:24:59 +0200 |
commit | 59caeb8b499840ed6ab3c698fa886e6e672f4658 (patch) | |
tree | 73be26761c593f54c0f91bf4c8f163934878b5aa | |
parent | 5259539a5f950ab3937ccd920fba304545f5aebe (diff) |
DB/Gossip: Added some missing gossips (Source: 5.4.0 sniffs)
-rw-r--r-- | sql/updates/world/2013_10_19_00_world_gossip.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/world/2013_10_19_00_world_gossip.sql b/sql/updates/world/2013_10_19_00_world_gossip.sql new file mode 100644 index 00000000000..00559b3b9bb --- /dev/null +++ b/sql/updates/world/2013_10_19_00_world_gossip.sql @@ -0,0 +1,14 @@ +DELETE FROM `gossip_menu` WHERE (`entry`=9578 AND `text_id`=12926) OR (`entry`=4825 AND `text_id`=5881) OR (`entry`=8891 AND `text_id`=11645); +INSERT INTO `gossip_menu` (`entry`, `text_id`) VALUES +(9578, 12926), -- 27705 +(4825, 5881), -- 5957 +(8891, 11645); -- 186267 + +DELETE FROM `gossip_menu_option` WHERE (`menu_id`=9578 AND `id`=0) OR (`menu_id`=4825 AND `id`=0) OR (`menu_id`=8891 AND `id`=0); +INSERT INTO `gossip_menu_option` (`menu_id`, `id`, `option_icon`, `option_text`, `box_coded`, `box_money`, `box_text`) VALUES +(9578, 0, 3, 'Please teach me.', 0, 0, ''), -- 27705 +(4825, 0, 3, 'Please teach me.', 0, 0, ''), -- 5957 +(8891, 0, 0, 'Call the Headless Horseman.', 0, 0, ''); -- 186267 + +UPDATE `creature_template` SET `gossip_menu_id`=9578 WHERE `entry`=27705; +UPDATE `creature_template` SET `gossip_menu_id`=4825 WHERE `entry`=5957; |