From 5e220e33bcb2b0e6536ef6bd171e0003021eb649 Mon Sep 17 00:00:00 2001 From: Grimfeather <88028633+Grimfeather@users.noreply.github.com> Date: Sun, 27 Jul 2025 22:20:01 +0200 Subject: [PATCH 1/2] Update si.sql --- sql/world/base/si.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sql/world/base/si.sql b/sql/world/base/si.sql index 8683fc8..d830bc5 100644 --- a/sql/world/base/si.sql +++ b/sql/world/base/si.sql @@ -751,6 +751,10 @@ INSERT INTO `creature_questender` (`id`, `quest`) VALUES UPDATE `quest_template` SET `QuestType` = 2, `QuestSortID` = -368, `AllowableRaces` = 1101 WHERE `ID` IN (9094, 9317, 9318, 9321, 9337, 9341); UPDATE `quest_template` SET `QuestType` = 2, `QuestSortID` = -368, `AllowableRaces` = 690 WHERE `ID` IN (9333, 9334, 9335, 9336, 9320, 9343); +UPDATE `quest_template_addon` SET `SpecialFlags` = 1 WHERE `ID` IN -- make quests repeatable +(9094, 9317, 9318, 9321, 9337, 9341, -- Alliance + 9333, 9334, 9335, 9336, 9320, 9343); -- Horde + DELETE FROM `quest_request_items` WHERE `ID` IN (9295, 9299, 9300, 9301, 9302, 9304); INSERT INTO `quest_request_items` (`ID`, `EmoteOnComplete`, `EmoteOnIncomplete`, `CompletionText`, `VerifiedBuild`) VALUES (9295, 1, 0, 'Yes? What do you have there?', 12340), From f94ba54cbcfc0a376dd5fcccb378ef61f1deca15 Mon Sep 17 00:00:00 2001 From: Grimfeather <88028633+Grimfeather@users.noreply.github.com> Date: Sun, 27 Jul 2025 22:23:15 +0200 Subject: [PATCH 2/2] Update aq_war_effort.sql --- sql/world/base/aq_war_effort.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sql/world/base/aq_war_effort.sql b/sql/world/base/aq_war_effort.sql index ddc82a0..bdc1996 100644 --- a/sql/world/base/aq_war_effort.sql +++ b/sql/world/base/aq_war_effort.sql @@ -264,3 +264,5 @@ UPDATE `quest_template` SET `QuestCompletionLog` = 'Return to Chief Sharpclaw in UPDATE `quest_template_addon` SET `SpecialFlags` = 0 WHERE `ID` = 8609; UPDATE `quest_template_addon` SET `SpecialFlags` = 1 WHERE `ID` = 8610; +-- make Field Duty Quests repeatable +UPDATE `quest_template_addon` SET `SpecialFlags` = 1 WHERE `ID` IN (8548, 8572, 8573, 8574, 9338);