diff options
| author | Kirkhammett <boev.filip@gmail.com> | 2013-08-10 20:36:45 +0100 |
|---|---|---|
| committer | Nay <dnpd.dd@gmail.com> | 2013-08-10 20:36:45 +0100 |
| commit | 0161012c69bb27834328cb408684c482bd530d91 (patch) | |
| tree | b045e0b852b2fc99158c3d609fa8691cf9b726b7 /sql/updates | |
| parent | bd4155bd5cd96b346ffd4982a86547507cfd9ee8 (diff) | |
Scripts/ZulFarrak: Convert Witch Doctor Zum'rah from SAI to Cpp
Closes #10508
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/world/2013_08_10_03_world_creature_text.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/2013_08_10_03_world_creature_text.sql b/sql/updates/world/2013_08_10_03_world_creature_text.sql new file mode 100644 index 00000000000..5c799a946fe --- /dev/null +++ b/sql/updates/world/2013_08_10_03_world_creature_text.sql @@ -0,0 +1,10 @@ +SET @NPC := 7271; +-- Move boss_zum_rah from SAI to CPP +UPDATE `creature_template` SET `AIName`= '', `ScriptName`= 'boss_zum_rah' WHERE `entry`=@NPC; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@NPC; +DELETE FROM `creature_text` WHERE `entry` =@NPC; +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`) VALUES +(@NPC, 0, 0, 'How dare you enter my sanctum!', 12, 0, 100, 0, 0, 0, 'Witch Doctor Zum''rah'), +(@NPC, 1, 1, 'T''eif godehsi wha!', 14, 14, 100, 0, 0, 0, 'Witch Doctor Zum''rah'), +(@NPC, 2, 2, 'Sands consume you!', 14, 0, 100, 0, 0, 0, 'Witch Doctor Zum''rah'), +(@NPC, 2, 3, 'Fall!', 14, 0, 100, 0, 0, 0, 'Witch Doctor Zum''rah'); |
