diff options
author | Dr-J <daniel.jarrott0@gmail.com> | 2015-04-28 14:44:52 +0100 |
---|---|---|
committer | MitchesD <majklprofik@seznam.cz> | 2015-11-01 10:19:56 +0100 |
commit | b60fceb9e2397e3f66ea57aec84ddcb0e46cf9c2 (patch) | |
tree | 876a303455e5db8b48a2413fab8f8cce88feb357 | |
parent | 9024588d1f8f6fc89cf8e7f8fb9171310b1444b0 (diff) |
DB/Misc: Quest rewards for Northrend Children's Week chain
Quest rewards for http://www.wowhead.com/quest=13959/back-to-the-orphanage and http://www.wowhead.com/quest=13960/back-to-the-orphanage
Mail will be delivered 15 mins after quest turned in containing the reward (pet) for which ever chain you completed
http://postimg.org/image/ukyloata3/
http://postimg.org/image/fdim3y1ff/
(cherry picked from commit df8fbb0759c14c7655016e2494874e65de4b636d)
-rw-r--r-- | sql/updates/world/2015_11_01_09_world_2015_04_28_01.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/2015_11_01_09_world_2015_04_28_01.sql b/sql/updates/world/2015_11_01_09_world_2015_04_28_01.sql new file mode 100644 index 00000000000..238e3097f48 --- /dev/null +++ b/sql/updates/world/2015_11_01_09_world_2015_04_28_01.sql @@ -0,0 +1,8 @@ +DELETE FROM `mail_loot_template` WHERE `Entry` in(269,270); + +INSERT INTO `mail_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(269, 46545, 0, 100, 0, 1, 0, 1, 1, NULL), -- Oracle +(270, 46544, 0, 100, 0, 1, 0, 1, 1, NULL); -- Wolvar + +UPDATE `quest_template_addon` SET `RewardMailTemplateId`=269,`RewardMailDelay`=900 WHERE `Id`=13959; +UPDATE `quest_template_addon` SET `RewardMailTemplateId`=270,`RewardMailDelay`=900 WHERE `Id`=13960; |