diff options
author | Dr-J <daniel.jarrott0@gmail.com> | 2014-09-19 01:48:48 +0100 |
---|---|---|
committer | Dr-J <daniel.jarrott0@gmail.com> | 2014-09-19 01:48:48 +0100 |
commit | 5b363992ff26c33de4f797ea83d831e815901e33 (patch) | |
tree | 29222e258bce5ba7018afe25602c478be9ef3dd6 | |
parent | 3a7fed7346c0654fcd272f47829ac42a4b49ce30 (diff) |
DB/Gossip: Proenitus
Closes #13165
-rw-r--r-- | sql/updates/world/2014_09_19_00_world_gossip.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/world/2014_09_19_00_world_gossip.sql b/sql/updates/world/2014_09_19_00_world_gossip.sql new file mode 100644 index 00000000000..f5b63aeb540 --- /dev/null +++ b/sql/updates/world/2014_09_19_00_world_gossip.sql @@ -0,0 +1,14 @@ +-- Proenitus, Azuremyst Isle +UPDATE `creature_template` SET `gossip_menu_id`=7305 WHERE `entry`=16477; +-- 8667 before quest 9280 or 9369 is completed, 8669 after quest 9280 or 9369 is completed +DELETE FROM `gossip_menu` WHERE `entry`=7305; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES +(7305,8667), +(7305,8669); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=7305; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(14, 7305, 8669, 0, 0, 8, 0, 9280, 0, 0, 0, 0, 0, '', 'Proenitus - Show Gossip Text only if Replenishing the Healing Crystals rewarded - or'), +(14, 7305, 8669, 0, 1, 8, 0, 9369, 0, 0, 0, 0, 0, '', 'Proenitus - Show Gossip Text only if Replenishing the Healing Crystals rewarded - or'), +(14, 7305, 8667, 0, 0, 8, 0, 9280, 0, 0, 1, 0, 0, '', 'Proenitus - Show Gossip Text only if Replenishing the Healing Crystals not rewarded - and'), +(14, 7305, 8667, 0, 0, 8, 0, 9369, 0, 0, 1, 0, 0, '', 'Proenitus - Show Gossip Text only if Replenishing the Healing Crystals not rewarded'); |