From 466897fd88d0a190cbe8580faee429e070aa4cae Mon Sep 17 00:00:00 2001 From: Hyacinthrose <82102341+Hyacinthrose@users.noreply.github.com> Date: Tue, 3 Feb 2026 08:30:54 +1030 Subject: [PATCH] DB/ElwynnForest: Update creature_text for Goblin Assassins (#31645) - Adjust SAI event chance to trigger text on aggro --- sql/updates/world/master/2026_02_02_01_world.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sql/updates/world/master/2026_02_02_01_world.sql diff --git a/sql/updates/world/master/2026_02_02_01_world.sql b/sql/updates/world/master/2026_02_02_01_world.sql new file mode 100644 index 0000000000..25efd8246e --- /dev/null +++ b/sql/updates/world/master/2026_02_02_01_world.sql @@ -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;