diff options
author | Meji <alvaro.megias@outlook.com> | 2023-04-08 13:14:47 +0200 |
---|---|---|
committer | Meji <alvaro.megias@outlook.com> | 2023-04-08 13:14:47 +0200 |
commit | d8bd9c6625d76d2a11176bc4b44fecb5b4a88446 (patch) | |
tree | 5cc34b76a6b6b342c8810d82e646ae5dc52b8b9c | |
parent | db6c97b1061e059b9906f220e62e1ebd2292d835 (diff) |
DB/Darnassus: Move Darnassus Sentinel's secondary gossip to the new gossip system
-rw-r--r-- | sql/updates/world/master/2023_04_08_02_world.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/world/master/2023_04_08_02_world.sql b/sql/updates/world/master/2023_04_08_02_world.sql new file mode 100644 index 00000000000..62f3bf278db --- /dev/null +++ b/sql/updates/world/master/2023_04_08_02_world.sql @@ -0,0 +1,13 @@ +UPDATE `creature_template` SET `AIName`='' WHERE `entry`=4262; + +DELETE FROM `creature_template_gossip` WHERE `CreatureID`=4262 AND `MenuID`=10265; +INSERT INTO `creature_template_gossip` (`CreatureID`, `MenuID`, `VerifiedBuild`) VALUES +(4262, 10265, 48676); + +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4262; + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceId`=0 AND `SourceEntry`=4262; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup` IN (2352, 10265) AND `SourceEntry`=0; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(14, 2352, 0, 0, 0, 23, 1, 702, 0, 0, 1, 0, 0, '', 'Show gossip menu if creature is not located in Rut''theran Village'), +(14, 10265, 0, 0, 0, 23, 1, 702, 0, 0, 0, 0, 0, '', 'Show gossip menu if creature is located in Rut''theran Village'); |