diff options
-rw-r--r-- | sql/updates/world/3.3.5/2025_03_20_00_world.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2025_03_20_00_world.sql b/sql/updates/world/3.3.5/2025_03_20_00_world.sql new file mode 100644 index 00000000000..42b381fa311 --- /dev/null +++ b/sql/updates/world/3.3.5/2025_03_20_00_world.sql @@ -0,0 +1,11 @@ +-- Add missing Gurthock gossip_menu +UPDATE `gossip_menu` SET `VerifiedBuild`=59679 WHERE `MenuID`=7699 AND `TextID`=9394; + +DELETE FROM `gossip_menu` WHERE `MenuID`=7699 AND `TextID`=9403; +INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES +(7699, 9403, 59679); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=7699 AND `SourceEntry` IN (9394,9403); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(14, 7699, 9394, 0, 0, 47, 0, 9977, 64, 0, 1, 0, 0, '', "Show gossip menu if player does not have quest 'The Ring of Blood: The Final Challenge' rewarded"), +(14, 7699, 9403, 0, 0, 47, 0, 9977, 64, 0, 0, 0, 0, '', "Show gossip menu if player has quest 'The Ring of Blood: The Final Challenge' rewarded"); |