aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent-Michael <Vincent_Michael@gmx.de>2012-08-14 20:15:27 +0200
committerVincent-Michael <Vincent_Michael@gmx.de>2012-08-14 20:15:27 +0200
commit0f40869627b9f6281cac34b203b9d7496c482449 (patch)
treeb042a369487211db83dda1fb9b4b82b622fe0e6b
parent79a2165e27eb59ace10d37a971080c58e401f600 (diff)
DB/Creature: Add Missing spawn for Mistcaller Soo-gan
-rw-r--r--sql/updates/world/2012_08_14_02_world_creature.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/2012_08_14_02_world_creature.sql b/sql/updates/world/2012_08_14_02_world_creature.sql
new file mode 100644
index 00000000000..5096c7d6b49
--- /dev/null
+++ b/sql/updates/world/2012_08_14_02_world_creature.sql
@@ -0,0 +1,12 @@
+SET @GUID := 42613;
+SET @ENTRY := 28114; -- Mistcaller Soo-gan
+
+DELETE FROM `creature` WHERE `id`=@ENTRY;
+INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`) VALUES
+(@GUID,@ENTRY,571,1,1,0,0,6165.004,5092.975,-97.29356,0.7504916,120,0,0,117700,3809,0);
+
+DELETE FROM `creature_template_addon` WHERE `entry`=@ENTRY;
+INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
+(@ENTRY,0,0,0x10000,0x1,0,'51589 52215');
+
+UPDATE `creature_template` SET `npcflag`=`npcflag` |1 WHERE `entry`=@ENTRY;