mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 18:36:31 +01:00
DB/Durotar: Update Thotar gossip (#31628)
This commit is contained in:
15
sql/updates/world/2026_01_20_00_world.sql
Normal file
15
sql/updates/world/2026_01_20_00_world.sql
Normal file
@@ -0,0 +1,15 @@
|
||||
-- Update Thotar the Razor Hill hunter trainer
|
||||
DELETE FROM `creature_template_gossip` WHERE `CreatureID` = 3171;
|
||||
INSERT INTO `creature_template_gossip` (`CreatureID`, `MenuID`, `VerifiedBuild`) VALUES
|
||||
(3171, 14006, 65299); -- 3171
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID` = 14006;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(14006, 4888, 65299), -- 3171
|
||||
(14006, 5002, 65299); -- 3171
|
||||
|
||||
-- Add conditions for If/If Not a Hunter
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 14 AND `SourceGroup` = 14006;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `ConditionStringValue1`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(14, 14006, 5002, 0, 0, 15, 0, 4, 0, 0, '', 1, 0, 0, '', 'Show gossip text if player is not a Hunter'),
|
||||
(14, 14006, 4888, 0, 0, 15, 0, 4, 0, 0, '', 0, 0, 0, '', 'Show gossip text if player is a Hunter');
|
||||
Reference in New Issue
Block a user