diff options
| author | tkrokli <tkrokli@users.noreply.github.com> | 2017-04-22 12:26:48 +0200 |
|---|---|---|
| committer | tkrokli <tkrokli@users.noreply.github.com> | 2017-04-22 12:26:48 +0200 |
| commit | 224399958d680e281192366111fc938eddad6ef6 (patch) | |
| tree | 4299873ed5e2a7e863da1c351dd6222f8a0d240f /sql | |
| parent | 25a449a90e01d7100d482c156fffa3ac2e7730d2 (diff) | |
DB/Quests: add missing quest text (14352)
- http://www.wowhead.com/quest=14352/an-unholy-alliance
Quest: An Unholy Alliance
Progress text & Completion text + ID for the quest gossip.
These queries add the missing quest text back to the DB.
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/3.3.5/2017_04_22_01_world_335.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_04_22_01_world_335.sql b/sql/updates/world/3.3.5/2017_04_22_01_world_335.sql new file mode 100644 index 00000000000..68d5fd52bb2 --- /dev/null +++ b/sql/updates/world/3.3.5/2017_04_22_01_world_335.sql @@ -0,0 +1,8 @@ +-- Quest: An Unholy Alliance (14352) missing Progress text & Completion text & info +DELETE FROM `quest_request_items` WHERE `ID`= 14352; +INSERT INTO `quest_request_items` (`ID`,`EmoteOnComplete`,`EmoteOnIncomplete`,`CompletionText`,`VerifiedBuild`) VALUES +(14352, 0, 0, 'What do you want, $N? This had better be important.', 12340); + +DELETE FROM `quest_offer_reward` WHERE `ID`= 14352; +INSERT INTO `quest_offer_reward` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`RewardText`,`VerifiedBuild`) VALUES +(14352, 0, 0, 0, 0, 0, 0, 0, 0, "I've seen the insignia on this scroll before during my time in Northrend. You say this was on that crone who leads the pigs in Razorfen Kraul?$b$bI'll be damned if I'm going to let the Scourge get a foothold here. The one who wrote this - this Malcin - is one of the Lich King's servants, obviously, and that makes him a target. Your target.$b$bThey're not going to take Kalimdor.$b$b", 12340); |
