diff options
author | Kittnz <frederik156@hotmail.com> | 2015-04-07 23:03:02 +0200 |
---|---|---|
committer | DDuarte <dnpd.dd@gmail.com> | 2015-04-14 01:02:09 +0100 |
commit | ab2a7aa8d979089b3b8271d0a0c0428cef3612b6 (patch) | |
tree | 62c3bd9914397724cee452181a5f22f369020af7 | |
parent | 0192a602d6f19cfb4d90aaf0e6c797ed0a198c1f (diff) |
DB/NPC: Goblin Merc spawn and some adjustment on Dragonmaw Base Camp
by @Killyana
Closes #14453
(cherry picked from commit 869955e03c3bf03352237bd33d79215aacbe06ad)
-rw-r--r-- | sql/updates/world/2015_04_07_01_world.sql | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sql/updates/world/2015_04_07_01_world.sql b/sql/updates/world/2015_04_07_01_world.sql new file mode 100644 index 00000000000..e000a43fe1c --- /dev/null +++ b/sql/updates/world/2015_04_07_01_world.sql @@ -0,0 +1,21 @@ +SET @GUID := 69717; -- 4 creature guid Set by TC +SET @OGUID := 5510; -- 1 GOB guid set by TC +DELETE FROM `creature` WHERE `id`=23142; +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`,`curhealth`) VALUES +(@GUID+0, 23142, 530, 1, 1, -5121.06, 598.424, 84.7603, 0.0581088, 600, 6542), +(@GUID+1, 23142, 530, 1, 1, -5119.60, 601.834, 84.8180, 5.1726200, 600, 6542), +(@GUID+2, 23142, 530, 1, 1, -5115.02, 601.537, 85.0292, 4.0204400, 600, 6542), +(@GUID+3, 23142, 530, 1, 1, -5114.25, 597.062, 85.1574, 2.7049000, 600, 6542); + +DELETE FROM `gameobject` WHERE `guid` IN (@OGUID); +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(@OGUID,50983,530,1,1, -5116.788574, 631.188660, 85.055522,0.949811,0,0,0.457254, 0.889336, 300, 0, 1); + +DELETE FROM `creature_equip_template` WHERE `entry`=23146; +INSERT INTO `creature_equip_template` (`entry`, `id`, `itemEntry1`, `itemEntry2`, `itemEntry3`, `VerifiedBuild`) VALUES (23146, 1, 31603, 0, 0, 0); +UPDATE `creature` SET `position_x`= -5158.237305, `position_y`= 584.302612, `position_z`= 81.074142, `orientation`= 5.954358 WHERE `guid`= 78136; +UPDATE `creature` SET `position_x`= -5156.172363, `position_y`= 590.695251, `position_z`= 80.769630, `orientation`= 5.502757 WHERE `guid`= 78135; +UPDATE `creature` SET `position_x`= -5152.365723, `position_y`= 592.303040, `position_z`= 81.361931, `orientation`= 4.705578 WHERE `guid`= 78137; +UPDATE `creature` SET `position_x`= -5113.345703, `position_y`= 623.850159, `position_z`= 86.736343, `orientation`= 1.033840 WHERE `guid`= 78160; +UPDATE `creature` SET `position_x`= -5123.593750, `position_y`= 626.638916, `position_z`= 86.629669, `orientation`= 1.395123 WHERE `guid`= 78159; +UPDATE `creature` SET `position_x`= -5165.503418, `position_y`= 568.109131, `position_z`= 80.523895, `orientation`= 2.707489 WHERE `guid`= 52107; |