diff options
author | tkrokli <tkrokli@users.noreply.github.com> | 2017-07-25 07:47:39 +0200 |
---|---|---|
committer | tkrokli <tkrokli@users.noreply.github.com> | 2017-07-25 07:47:39 +0200 |
commit | 20fe8cad9427a9769eb8f0e7d378919869f05cf9 (patch) | |
tree | 10f1ad75e095af1657af640fdfe2b593ee7ec7b1 | |
parent | 7cbb6c101e975a046b95aeb5dd68d75d016f67a5 (diff) |
DB/Quests: 'The Crimson Courier' (14350) - add missing text
- add missing CompletionText (Progress) and RewardText to quest 14350
- identical to quest ID 6145, only Bragor Bloodfist's text is changed
- fix minor typo in Reward Text for quest ID 838 'Scholomance'(Horde)
-rw-r--r-- | sql/updates/world/3.3.5/2017_07_25_00_world_335.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_07_25_00_world_335.sql b/sql/updates/world/3.3.5/2017_07_25_00_world_335.sql new file mode 100644 index 00000000000..6012b18fd42 --- /dev/null +++ b/sql/updates/world/3.3.5/2017_07_25_00_world_335.sql @@ -0,0 +1,12 @@ +-- CompletionText for Quest ID 14350 'The Crimson Courier' (text missing) +DELETE FROM `quest_request_items` WHERE `ID` = 14350; -- Replaced quest ID 6145 (Varimathras) +INSERT INTO `quest_request_items` (`ID`,`EmoteOnComplete`,`EmoteOnIncomplete`,`CompletionText`,`VerifiedBuild`) VALUES +(14350, 1, 0, 'Succeed now and you will have almost earned my respect, $C.', 12340); + +-- RewardText for Quest ID 14350 'The Crimson Courier' (text missing) +DELETE FROM `quest_offer_reward` WHERE `ID` = 14350; -- Replaced quest ID 6145 (Varimathras) +INSERT INTO `quest_offer_reward` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`RewardText`,`VerifiedBuild`) VALUES +(14350, 0, 0, 0, 0, 0, 0, 0, 0, '<Nathanos laughs.>$B$BExcellent! Finally! An opportunity to destroy the Scarlet Oracle!', 12340); + +-- Minor typo in RewardText for quest ID 838 'Scholomance' (Horde) +UPDATE `quest_offer_reward` SET `RewardText`= "Yes, $C, the High Executor mentioned you might be the one to trust in the matter of the key. I've dedicated a fair portion of my recent studies to the Scholomance, and I believe I know a means by which you can acquire one that will let you past the front door at will.$b$bThis task will not be easy, but such tasks seldom are. You most assuredly look like the type to know this as fact." WHERE `ID` = 838; |