diff options
| author | Wyreth <Wyreth@users.noreply.github.com> | 2017-10-03 19:35:37 +0200 |
|---|---|---|
| committer | Killyana <morphone1@gmail.com> | 2017-10-03 19:35:37 +0200 |
| commit | b78a30868abe71389a70c2fecaaba32b3b001741 (patch) | |
| tree | c48757979a45aa6ab8c53c7775c549a14b13005b | |
| parent | 24511f9e97b34cbb10aa291256058e25781f488c (diff) | |
DB/Quest: Mission Accomplished! availability for both factions
Closes #20539
| -rw-r--r-- | sql/updates/world/3.3.5/2017_10_03_06_world_335.sql | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_10_03_06_world_335.sql b/sql/updates/world/3.3.5/2017_10_03_06_world_335.sql new file mode 100644 index 00000000000..33f3cc1f557 --- /dev/null +++ b/sql/updates/world/3.3.5/2017_10_03_06_world_335.sql @@ -0,0 +1,21 @@ +-- +UPDATE `quest_template` SET `RewardFactionID1`=469, `AllowableRaces`=1101 WHERE `ID`=5237; +UPDATE `quest_template` SET `RewardFactionID2`=67, `AllowableRaces`=690 WHERE `ID`=5238; + +DELETE FROM `creature_queststarter` WHERE `quest` IN (5237, 5238); +INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES +(10837, 5238), +(10838, 5237); + +DELETE FROM `creature_questender` WHERE `quest` IN (5237, 5238); +INSERT INTO `creature_questender` (`id`, `quest`) VALUES +(10837, 5238), +(10838, 5237); + +DELETE FROM `quest_template_addon` WHERE `ID` IN (5237,5238); +INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`) VALUES +(5238, 0, 0, 0, 5236, 0, 0, 101, 86400, 0, 0, 0, 0, 0, 0, 0, 0), +(5237, 0, 0, 0, 5226, 0, 0, 107, 86400, 0, 0, 0, 0, 0, 0, 0, 0); + +UPDATE `quest_offer_reward` SET `RewardText`="$N, your successful re-engineering of the cauldrons is a tremendous victory for us!$B$B<The commander clears his throat and begins to bellow loudly.>$B$BLet all within my presence hear: for service to the Kingdom of Stormwind and to the Alliance above and beyond the call of duty - in the face of overwhelming odds and incredible danger, might I add - I give $N this, and I extend upon $Ghim:her; our undying gratitude as a true hero of the Alliance. Cheers, I say!" WHERE `ID`=5237; +UPDATE `quest_offer_reward` SET `RewardText`="$N, your successful re-engineering of the cauldrons is a tremendous victory for us!$B$B<The high executor clears his throat and begins to bellow loudly.>$B$BLet all within my presence hear: for service to the Forsaken and to the Horde as a whole above and beyond what was expected - in the face of overwhelming odds and incredible danger, might I add - I give $N this, and I extend upon $Ghim:her; our undying gratitude as a true hero of the Horde. Huzzah!" WHERE `ID`=5238; |
