diff options
author | Wyrserth <Wyrserth@users.noreply.github.com> | 2019-06-19 18:08:23 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-12-11 16:18:01 +0100 |
commit | 86eb312494b85c57a484e083bd8e5b9ab0e83793 (patch) | |
tree | 926ff89307dfdfc55f2d2daec54ee3da2b226d65 | |
parent | 1a9198dc0464388264ec3e78924732e1f6282614 (diff) |
DB/SAI: Add out-of-combat texts to Sergeant Gorth
Closes #23443
(cherry picked from commit 5eafa03b46e94886189b8fbb41afc6e6dd803826)
-rw-r--r-- | sql/updates/world/master/2021_12_11_26_world_2019_06_19_04_world.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_12_11_26_world_2019_06_19_04_world.sql b/sql/updates/world/master/2021_12_11_26_world_2019_06_19_04_world.sql new file mode 100644 index 00000000000..6e3094f03b1 --- /dev/null +++ b/sql/updates/world/master/2021_12_11_26_world_2019_06_19_04_world.sql @@ -0,0 +1,15 @@ +-- +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=24027; +DELETE FROM `smart_scripts` WHERE `entryorguid`=24027 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(24027, 0, 0, 0, 1, 0, 100, 0, 20000, 40000, 60000, 120000, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Sergeant Gorth - OOC - Talk"); + +DELETE FROM `creature_text` WHERE `CreatureID`=24027; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(24027, 0, 0, "Crush them! Crush their faces!", 14, 1, 100, 0, 0, 0, 22623, 0, "Sergeant Gorth"), +(24027, 0, 1, "Hold positions! Keep vrykul men back!", 14, 1, 100, 0, 0, 0, 22624, 0, "Sergeant Gorth"), +(24027, 0, 2, "Kill vrykul scum! For Sylvanas!", 14, 1, 100, 0, 0, 0, 22625, 0, "Sergeant Gorth"), +(24027, 0, 3, "Don't let vrykul come through! Kill all!", 14, 1, 100, 0, 0, 0, 22626, 0, "Sergeant Gorth"), +(24027, 0, 4, "Some things Gorth has to do himself!", 12, 1, 100, 0, 0, 0, 22627, 0, "Sergeant Gorth"), +(24027, 0, 5, "You no match for Gorth!", 12, 1, 100, 0, 0, 0, 22628, 0, "Sergeant Gorth"), +(24027, 0, 6, "Gorth no care if he die! Gorth get put back together!", 12, 1, 100, 0, 0, 0, 22629, 0, "Sergeant Gorth"); |