diff options
author | SnapperRy <snapperryen@gmail.com> | 2016-10-15 02:40:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-15 02:40:21 +0200 |
commit | ec0a8d58eee35514f99bf8a1e305124959bc2e50 (patch) | |
tree | 9ccfc6cf74abe5f18a0ff6388447e92db9eb9eae | |
parent | 86759c4537cbaac90391822104de4e3ac610013b (diff) |
DB/Gossip: add gossip for creature Deino that is shown after completing the quest A Letter for Home.
-rw-r--r-- | sql/updates/world/3.3.5/2016_10_15_03_world.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2016_10_15_03_world.sql b/sql/updates/world/3.3.5/2016_10_15_03_world.sql new file mode 100644 index 00000000000..89c39eda004 --- /dev/null +++ b/sql/updates/world/3.3.5/2016_10_15_03_world.sql @@ -0,0 +1,8 @@ +-- +DELETE FROM `gossip_menu` WHERE `entry`=4519 AND `text_id`=12696; +INSERT INTO `gossip_menu` (`entry`, `text_id`, `VerifiedBuild`) VALUES +(4519, 12696, 0); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=4519 AND `SourceEntry`=12696; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(14, 4519, 12696, 0, 0, 8, 0, 12085, 0, 0, 0, 0, 0, "", "Show gossip text if quest A Letter for Home is not rewarded"); |