diff options
author | ZenoX92 <ZenoX92@users.noreply.github.com> | 2018-05-08 02:06:52 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-09-26 18:36:09 +0200 |
commit | 49a2c00983a97ce214e317eec8d85cb01f0868da (patch) | |
tree | 7e616ab0e3378ef14926f88bb66b6efff97312d1 | |
parent | 376defd0850e80b2d834170b2a59ec6300b3682a (diff) |
DB/Gossip: Gaeriyan
Closes #21909
(cherry picked from commit f441987e0979f2b4a0c8af5f998170395dd15469)
-rw-r--r-- | sql/updates/world/master/2021_09_26_06_world_2018_05_08_00_world_335.sql | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_09_26_06_world_2018_05_08_00_world_335.sql b/sql/updates/world/master/2021_09_26_06_world_2018_05_08_00_world_335.sql new file mode 100644 index 00000000000..d43b74049a6 --- /dev/null +++ b/sql/updates/world/master/2021_09_26_06_world_2018_05_08_00_world_335.sql @@ -0,0 +1,17 @@ +-- +-- Gaeriyan --> Fix Gossip Texts +DELETE FROM `gossip_menu` WHERE `MenuID`=1914 AND `TextID` IN (2567,2569); +INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES +(1914,2567,0), +(1914,2569,0); + +DELETE FROM `npc_text` WHERE `ID`=2569; +INSERT INTO `npc_text` (`ID`, `BroadcastTextID0`, `Probability0`) VALUES +(2569,4826,1); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=1914; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(14,1914,2567,0,0,14,0,3912,0,0,0,0,0,"","Show gossip text 2567 if quest 'Meet at the Grave' is not taken"), +(14,1914,2568,0,0,14,0,3912,0,0,1,0,0,"","Show gossip text 2568 if quest 'Meet at the Grave' is taken"), +(14,1914,2568,0,0,14,0,3913,0,0,0,0,0,"","Show gossip text 2568 if quest 'A Grave Situation' is not taken"), +(14,1914,2569,0,0,14,0,3913,0,0,1,0,0,"","Show gossip text 2569 if quest 'A Grave Situation' is taken"); |