aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAokromes <Aokromes@users.noreply.github.com>2024-03-29 19:06:01 +0100
committerGitHub <noreply@github.com>2024-03-29 19:06:01 +0100
commita9a1a73f2b5b035f216f3e5a606bbdffd27a59c6 (patch)
treea53807e8f3420df62418b32831919ed0af3b329d
parent5791ad9c975577e78207af6a2ef92284a8c2f770 (diff)
DB/Gossip: Vindicator Boros gossip text
closes #29842 by Jonne733
-rw-r--r--sql/updates/world/3.3.5/2024_03_29_07_world.sql17
1 files changed, 17 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2024_03_29_07_world.sql b/sql/updates/world/3.3.5/2024_03_29_07_world.sql
new file mode 100644
index 00000000000..3ff8cd3a1b0
--- /dev/null
+++ b/sql/updates/world/3.3.5/2024_03_29_07_world.sql
@@ -0,0 +1,17 @@
+-- Vindicator Boros gossip menu changes after turning in quest "I Shoot Magic Into the Darkness"
+-- Gossip menu
+DELETE FROM `gossip_menu` WHERE `MenuID`=7465 AND `TextID`=9076;
+INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
+(7465,9076,0);
+
+-- Missing Gossip Otions for Vindicator Boros during quest "I Shoot Magic Inte the Darkness"
+-- Gossip menu option text
+DELETE FROM `gossip_menu_option` WHERE `MenuID`=7465;
+INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
+(7465,0,0,"Where should I begin my search for the portal?",14503,1,1,7501,0,0,0,"",0,0);
+
+-- Condition
+DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (14,15) AND `SourceGroup`=7465;
+INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
+(14,7465,9076,0,0,8,0,9700,0,0,0,0,0,"","Gossip text 9076 requires quest 'I Shoot Magic Into the Darkness' rewarded"),
+(15,7465,0,0,0,47,0,9700,10,0,0,0,0,'','Show gossip menu options only if Quest 9700 is taken (active)');