diff options
author | foldor <foldor@trinity.contrib> | 2013-03-23 10:31:26 +0100 |
---|---|---|
committer | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2013-03-23 10:31:26 +0100 |
commit | 1dcfc74e2319ea1ee11c0efb8b0dd32d79c494df (patch) | |
tree | c685d7a6cd16d55b11fe58e4037a8cb07ff5f363 | |
parent | 6c6ee59ac99c8db247c515b0f9e66f240ebd210a (diff) |
DB/Creature: add missing Silver Convenant in Frozen Halls
Closes #9082
-rw-r--r-- | sql/updates/world/2013_03_23_02_world_creature.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/2013_03_23_02_world_creature.sql b/sql/updates/world/2013_03_23_02_world_creature.sql new file mode 100644 index 00000000000..874068599f0 --- /dev/null +++ b/sql/updates/world/2013_03_23_02_world_creature.sql @@ -0,0 +1,11 @@ +SET @CGUID := 54428; -- set by TDB team (3) +DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2; +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `MovementType`) VALUES +(@CGUID+0, 36656, 571, 1, 1, 5647.669, 2106.526, 798.1375, 4.764749, 120, 0, 0), -- Silver Covenant Sentinel (Area: 4862) +(@CGUID+1, 36656, 571, 1, 1, 5657.819, 2105.712, 798.1375, 4.590216, 120, 0, 0), -- Silver Covenant Sentinel (Area: 4862) +(@CGUID+2, 36624, 571, 1, 1, 5652.733, 2106.208, 798.1375, 4.572762, 120, 0, 0); -- Caladis Brightspear (Area: 4862) +DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2; +INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES +(@CGUID+0, 0, 0, 0x10000, 0x1, 0, '71311'), +(@CGUID+1, 0, 0, 0x10000, 0x1, 0, '71311'), +(@CGUID+2, 0, 0, 0x10000, 0x1, 0, '71311'); |