diff options
author | Wyreth <Wyreth@users.noreply.github.com> | 2017-09-30 16:10:00 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2020-09-13 18:46:29 +0200 |
commit | 0cbf7c9bc15954423b82c7d59d13c870f17d8dbf (patch) | |
tree | 96013590bd28e4944d4ef5b2a94357bc8e18a46b | |
parent | 2e69b27bd971013cb3e8a318dbd83f397447a520 (diff) |
DB/Gossip: Geirrvif
Closes #20476
(cherry picked from commit 295f8d56ce6f0bff68c8a5a33a6ca25085e54b56)
-rw-r--r-- | sql/updates/world/master/2020_09_13_16_world_2017_09_30_09_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/master/2020_09_13_16_world_2017_09_30_09_world.sql b/sql/updates/world/master/2020_09_13_16_world_2017_09_30_09_world.sql new file mode 100644 index 00000000000..939dde0ecca --- /dev/null +++ b/sql/updates/world/master/2020_09_13_16_world_2017_09_30_09_world.sql @@ -0,0 +1,9 @@ +-- Fix gossip text for NPC Geirrvif +UPDATE `creature_template` SET `npcflag`=`npcflag`|1 WHERE `entry`=31135; +DELETE FROM `gossip_menu` WHERE `TextID`=13918 AND `MenuID`=10034; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=10034; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(14, 10034, 13921, 0, 0, 8, 0, 13142, 0, 0, 1, 0, 0, "", "Show gossip text 13921 if quest 'Banshee's Revenge' is NOT rewarded"), +(14, 10034, 13922, 0, 0, 8, 0, 13142, 0, 0, 0, 0, 0, "", "Show gossip text 13922 if quest 'Banshee's Revenge' is rewarded AND"), +(14, 10034, 13922, 0, 0, 8, 0, 13219, 0, 0, 1, 0, 0, "", "Show gossip text 13922 if quest 'Battle at Valhalas: Final Challenge' is NOT rewarded"), +(14, 10034, 13946, 0, 0, 8, 0, 13219, 0, 0, 0, 0, 0, "", "Show gossip text 13946 if quest 'Battle at Valhalas: Final Challenge' is rewarded"); |