From 76d5dbad4b7007fdff892e2fcaff6c000a713ed7 Mon Sep 17 00:00:00 2001 From: tkrokli Date: Tue, 12 Jan 2016 15:08:06 +0100 Subject: [3.3.5] Core/Script: move Myranda the Hag's gossip option to DB Removing hardcoded text from the core script and into the DB: "I am ready for the illusion, Myranda." This quest is 3.3.5 *only*. Removed in patch 4.0.3a. Addendum: enum ILLUSION_GOSSIP = 4773 , instead of "magic number". --- sql/updates/world/2016_01_12_14_world335.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 sql/updates/world/2016_01_12_14_world335.sql (limited to 'sql') diff --git a/sql/updates/world/2016_01_12_14_world335.sql b/sql/updates/world/2016_01_12_14_world335.sql new file mode 100644 index 00000000000..354d0bc129d --- /dev/null +++ b/sql/updates/world/2016_01_12_14_world335.sql @@ -0,0 +1,4 @@ +-- Insert missing gossip_menu_option 3801 for Myranda the Hag: +DELETE FROM `gossip_menu_option` WHERE `menu_id`= 3801 AND `OptionBroadcastTextID`= 7306; +INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`OptionBroadcastTextID`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`,`BoxBroadcastTextID`) VALUES +(3801,0,0,'I am ready for the illusion, Myranda.',7306,2,3,0,0,0,0,'',0); -- cgit v1.2.3