Skip to content

Commit

Permalink
[1315] Fixed quest 2936 in Zul'Farrak
Browse files Browse the repository at this point in the history
* Fixed quest 2936 (The Spider God) in Zul'Farrak
Gossip menu was missing
Thanks TheTrueAnimal for pointing and Rushor and trimken for providing
data
This closes #718
Source: http://www.wowhead.com/object=142715/tablet-of-theka#comments
http://www.wowhead.com/quest=2936/the-spider-god
  • Loading branch information
cala committed Mar 12, 2016
1 parent 916aded commit dac3568
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions updates/1315_gossip_menu_option.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
-- Fixed quest 2936 (The Spider God) in Zul'Farrak
-- Gossip menu was missing
-- Thanks TheTrueAnimal for pointing and Rushor and trimken for providing data
-- This closes #718
-- Source: http://www.wowhead.com/object=142715/tablet-of-theka#comments
-- http://www.wowhead.com/quest=2936/the-spider-god

SET @CONDITION := 832;

DELETE FROM `conditions` WHERE `condition_entry` = @CONDITION;
INSERT INTO `conditions` VALUES
(@CONDITION, 9, 2936, 0);

DELETE FROM `gossip_menu_option` WHERE `menu_id` = 1053;
INSERT INTO gossip_menu_option (menu_id, id, option_icon, option_text, option_id, npc_option_npcflag, action_menu_id, action_poi_id, action_script_id, box_coded, box_money, box_text, condition_id) VALUES
(1053, 0, 0, 'Continue.', 1, 1, 1054, 0, 0, 0, 0, '', @CONDITION);

DELETE FROM `gossip_menu` WHERE `entry` = 1054;
INSERT INTO `gossip_menu` VALUES
(1054, 1654, 105401, 0);

DELETE FROM `dbscripts_on_gossip` WHERE `id` = 105301;
INSERT INTO `dbscripts_on_gossip` VALUES
(105401, 0, 7, 2936, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');

1 comment on commit dac3568

@Tobschinski
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add gossip_menus to the list of things I hate.

Please sign in to comment.