diff options
author | Killyana <morphone1@gmail.com> | 2018-09-24 00:56:21 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-11-10 22:58:31 +0100 |
commit | 4ea51384a715ea55e15dda834dde712efa6c89ea (patch) | |
tree | 1ddb663a7b8568dead8322274e20b614b3265ae4 | |
parent | ecb24097e549179ca03e62f1e94bd48ffd1509f8 (diff) |
DB/Creature: Add some missing spawns
(cherry picked from commit e2627da5eacfb31abdf916c2cfd7d33b16dca105)
-rw-r--r-- | sql/updates/world/master/2021_11_10_02_world_2018_09_23_06_world.sql | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_11_10_02_world_2018_09_23_06_world.sql b/sql/updates/world/master/2021_11_10_02_world_2018_09_23_06_world.sql new file mode 100644 index 00000000000..2ed3bf8c058 --- /dev/null +++ b/sql/updates/world/master/2021_11_10_02_world_2018_09_23_06_world.sql @@ -0,0 +1,21 @@ +-- +UPDATE `creature_template` SET `npcflag`=1048577 WHERE `entry` IN (34978,34987,34985,34983); +DELETE FROM `battlemaster_entry` WHERE `entry` IN (34978,34987,34985,34983); +INSERT INTO `battlemaster_entry` (`entry`, `bg_template`) VALUES +(34978,32),(34987,32),(34985,32),(34983,32); + +DELETE FROM `creature` WHERE `guid` IN (86711,86723,86800,86801,86802,86803,86804); +DELETE FROM `creature` WHERE `id` IN (34987,34985,34983,28209,28210,28206,29145); +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnDifficulties`, `phaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`) VALUES +(86711, 34987, 530, '', 0, 0, 1, -3998.37, -11326, -120.91, 4.72984, 300, 0, 0, 0, 0, 0), +(86723, 34985, 0, '', 0, 0, 1, 1333.51, 326.417, -63.6327, 3.33358, 300, 0, 0, 0, 0, 0), +(86800, 34983, 0, '', 0, 0, 1, 1329.95, 341.604, -63.6265, 3.52556, 300, 0, 0, 0, 0, 0), +(86801, 28209, 230, '1', 0, 0, 1, 849.49, -179.317, -49.671, 4.10152, 180, 0, 0, 0, 0, 0), +(86802, 28210, 230, '1', 0, 0, 1, 845.881, -182.203, -49.6705, 1.18682, 180, 0, 0, 0, 0, 0), +(86803, 28206, 230, '1', 0, 0, 0, 847.823, -181.144, -49.6707, 1.85005, 180, 0, 0, 0, 0, 0), +(86804, 29145, 530, '', 0, 0, 0, 2970.77, 3750.62, 144.341, 4.9631, 180, 0, 0, 0, 0, 0); + +DELETE FROM `creature_template_addon` WHERE `entry` IN (28209,28210); +INSERT INTO `creature_template_addon` (`entry`, `bytes2`, `emote`) VALUES +(28209, 1, 133), +(28210, 1, 133); |