diff options
author | Wyrserth <Wyrserth@users.noreply.github.com> | 2019-06-24 18:40:17 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-12-12 02:19:09 +0100 |
commit | c7290fd2a56b7cf34ccd120ceecea1bdfedcef04 (patch) | |
tree | afd32e1be29ceeff35a762c7aeb4affe80b10cc9 | |
parent | d9795df8894415f9081771cd51fbd52b8b638b55 (diff) |
DB/SAI: Add out-of-combat texts for Falcon Watch Ranger
Closes #23501
(cherry picked from commit 927d68c8ed76676d77da43ea0a35577334f65b85)
-rw-r--r-- | sql/updates/world/master/2021_12_11_60_world_2019_06_24_04_world.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_12_11_60_world_2019_06_24_04_world.sql b/sql/updates/world/master/2021_12_11_60_world_2019_06_24_04_world.sql new file mode 100644 index 00000000000..133f9159553 --- /dev/null +++ b/sql/updates/world/master/2021_12_11_60_world_2019_06_24_04_world.sql @@ -0,0 +1,12 @@ +DELETE FROM `creature_text` WHERE `CreatureID`=17282; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(17282, 0, 0, "We're never going to fire one of these, are we?", 12, 1, 100, 0, 0, 0, 19346, 0, "Falcon Watch Ranger"), +(17282, 0, 1, "Do we even have ammunition for these?", 12, 1, 100, 0, 0, 0, 19347, 0, "Falcon Watch Ranger"), +(17282, 0, 2, "What, exactly, are we ever going to fire these at?", 12, 1, 100, 0, 0, 0, 19348, 0, "Falcon Watch Ranger"), +(17282, 0, 3, "I wonder how far this would launch that white cat...", 12, 1, 100, 0, 0, 0, 19349, 0, "Falcon Watch Ranger"); + +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=17282; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (-62073, -62075) 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`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(-62073, 0, 0, 0, 1, 0, 100, 0, 5000, 20000, 120000, 240000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Falcon Watch Ranger - Out Of Combat - Talk"), +(-62075, 0, 0, 0, 1, 0, 100, 0, 5000, 20000, 120000, 240000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Falcon Watch Ranger - Out Of Combat - Talk"); |