diff options
| author | ZenoX92 <ZenoX92@users.noreply.github.com> | 2017-10-03 20:22:27 +0200 | 
|---|---|---|
| committer | Killyana <morphone1@gmail.com> | 2017-10-03 20:22:27 +0200 | 
| commit | 1b131182e432d45144ad79ff7f01754449d82652 (patch) | |
| tree | 20eac99d23f33ffebf1dfad644e6c115aa070b4e | |
| parent | c61526d72658743f83430a2866309acc0c688752 (diff) | |
DB/Creature: Grimmaw
Closes #20529
| -rw-r--r-- | sql/updates/world/3.3.5/2017_10_03_14_world_335.sql | 27 | 
1 files changed, 27 insertions, 0 deletions
| diff --git a/sql/updates/world/3.3.5/2017_10_03_14_world_335.sql b/sql/updates/world/3.3.5/2017_10_03_14_world_335.sql new file mode 100644 index 00000000000..5762a88d15f --- /dev/null +++ b/sql/updates/world/3.3.5/2017_10_03_14_world_335.sql @@ -0,0 +1,27 @@ +-- Add Missing Spawn and Waypoint Movement for Grimmaw +SET @GUID := 27589; +DELETE FROM `creature` WHERE `guid`=@GUID; +DELETE FROM `creature` WHERE `id`=14429; +INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES +(@GUID,14429,1,0,0,1,1,0,0,9132.61,1651.7,1322.14,4.25837,7200,0,0,222,0,2,0,0,0,'',0); + +DELETE FROM `creature_addon` WHERE `guid`=@GUID; +INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES +(@GUID,@GUID*10,0,0,0,0,''); + +DELETE FROM `waypoint_data` WHERE `id`=@GUID*10; +INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES +(@GUID*10,1,9132.81,1664.76,1320.77,0,0,0,0,100,0), +(@GUID*10,2,9141.27,1690.01,1320.05,0,0,0,0,100,0), +(@GUID*10,3,9141.58,1727.6,1319.16,0,0,0,0,100,0), +(@GUID*10,4,9137.61,1753.82,1319.01,0,0,0,0,100,0), +(@GUID*10,5,9116,1771.33,1321.66,0,0,0,0,100,0), +(@GUID*10,6,9109.14,1808.41,1325.54,0,0,0,0,100,0), +(@GUID*10,7,9111.24,1823.84,1328.53,0,0,0,0,100,0), +(@GUID*10,8,9108.77,1809.06,1325.75,0,0,0,0,100,0), +(@GUID*10,9,9115.99,1771.94,1321.74,0,0,0,0,100,0), +(@GUID*10,10,9136.82,1754.07,1318.87,0,0,0,0,100,0), +(@GUID*10,11,9141.64,1726.7,1319.16,0,0,0,0,100,0), +(@GUID*10,12,9141.35,1689.69,1320.03,0,0,0,0,100,0), +(@GUID*10,13,9131.44,1665.16,1320.95,0,0,0,0,100,0), +(@GUID*10,14,9132.59,1646.61,1322.61,0,0,0,0,100,0); | 
