aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAokromes <Aokromes@users.noreply.github.com>2024-03-29 19:04:07 +0100
committerGitHub <noreply@github.com>2024-03-29 19:04:07 +0100
commit5791ad9c975577e78207af6a2ef92284a8c2f770 (patch)
tree8f691e30b2a1c18fd76bee07dc74ebac6d612222
parentf12d18a06f28e03daf7c4f18db0d1a51b730288f (diff)
DB/Gossip: High Chief Stillpine is missing gossip menu text
closes #29851 by Jonne733
-rw-r--r--sql/updates/world/3.3.5/2024_03_29_06_world.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2024_03_29_06_world.sql b/sql/updates/world/3.3.5/2024_03_29_06_world.sql
new file mode 100644
index 00000000000..4ba91e25f5f
--- /dev/null
+++ b/sql/updates/world/3.3.5/2024_03_29_06_world.sql
@@ -0,0 +1,12 @@
+-- High Chief Stillpine is missing gossip menu text
+DELETE FROM `gossip_menu` WHERE `MenuID`=7434 AND `TextID`=9173;
+INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
+(7434,9173,0);
+
+-- Conditions
+DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=7434 AND `SourceEntry` IN (9173,9039);
+INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
+(14,7434,9173,0,0,8,0,9544,0,0,1,0,0,"","Gossip text 9173 requires quest 'The Prophecy of Akida (9544)' not rewarded and"),
+(14,7434,9173,0,0,47,0,9663,10,0,0,0,0,"","Gossip text 9173 requires players to have quest 'The Kessel Run' (9663) taken (active)"),
+(14,7434,9039,0,1,8,0,9544,0,0,0,0,0,"","Gossip text 9039 requires quest 'The Prophecy of Akida (9544)' rewarded and"),
+(14,7434,9039,0,1,47,0,9663,10,0,0,0,0,"","Gossip text 9039 requires players to have quest 'The Kessel Run' (9663) taken (active)");