diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2024-04-01 11:42:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-01 11:42:10 +0200 |
commit | 6126f625a57216280dac60c6b02b4fd9f3b14afc (patch) | |
tree | 7364bcbe40ec048a20d05285cdfb5b916035b97c | |
parent | 571f3639ad8871df433bd000a58d70d24214d7a2 (diff) |
DB/QUEST: Mulgore, missing and corrected quest emotes
closes #29876 by Jonne733
-rw-r--r-- | sql/updates/world/3.3.5/2024_04_01_05_world.sql | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2024_04_01_05_world.sql b/sql/updates/world/3.3.5/2024_04_01_05_world.sql new file mode 100644 index 00000000000..9439d747a58 --- /dev/null +++ b/sql/updates/world/3.3.5/2024_04_01_05_world.sql @@ -0,0 +1,25 @@ +-- Returning the Lost Satchel +UPDATE `quest_offer_reward` SET `Emote1`=2,`Emote2`=1 WHERE `ID`=5724; + +-- Searching for the Lost Satchel +UPDATE `quest_details` SET `Emote2`=1 WHERE `ID`=5722; + +-- The Barrens Oases +UPDATE `quest_offer_reward` SET `Emote1`=2 WHERE `ID`=886; + +-- Rites of the Earthmother +UPDATE `quest_offer_reward` SET `Emote2`=21 WHERE `ID`=776; + +-- A Sacred Burial +UPDATE `quest_request_items` SET `EmoteOnComplete`=5 WHERE `ID`=833; + +-- The Ravaged Caravan +UPDATE `quest_details` SET `Emote1`=1 WHERE `ID`=749; + +-- Kyle's Gone Missing! +UPDATE `quest_details` SET `Emote1`=5,`Emote2`=1,`Emote3`=1,`Emote4`=1 WHERE `ID`=11129; +UPDATE `quest_request_items` SET `EmoteOnComplete`=6,`EmoteOnIncomplete`=6 WHERE `ID`=11129; +UPDATE `quest_offer_reward` SET `Emote1`=4,`Emote2`=1,`Emote3`=1 WHERE `ID`=11129; + +-- Dangers of the Windfury +UPDATE `quest_details` SET `Emote1`=2,`Emote3`=1 WHERE `ID`=743; |