DB/ElwynnForest: Update creature_text for Goblin Assassins (#31645)

- Adjust SAI event chance to trigger text on aggro
This commit is contained in:
Hyacinthrose
2026-02-03 08:30:54 +10:30
committed by GitHub
parent 433e9b8426
commit 466897fd88

View File

@@ -0,0 +1,9 @@
-- Goblin Assasins in Northshire
DELETE FROM `creature_text` WHERE `CreatureID` = 50039;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `SoundPlayType`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(50039, 0, 0, 'We\'ll kill anybody for the right price!', 12, 0, 100, 0, 0, 0, 0, 49837, 0, 'Goblin Assassin on Aggro'),
(50039, 0, 1, 'Time to join your friends, kissin\' the dirt!', 12, 0, 100, 0, 0, 0, 0, 49838, 0, 'Goblin Assassin on Aggro'),
(50039, 0, 2, 'DIE!!!', 12, 0, 100, 0, 0, 0, 0, 49839, 0, 'Goblin Assassin on Aggro');
-- Update chance as its higher on retail
UPDATE `smart_scripts` SET `event_chance`= 35 WHERE `entryorguid`= 50039 AND `event_type`= 4;