diff options
| author | Dr-J <daniel.jarrott0@gmail.com> | 2014-07-24 15:54:35 +0100 |
|---|---|---|
| committer | Dr-J <daniel.jarrott0@gmail.com> | 2014-07-24 15:54:35 +0100 |
| commit | 88ac8d4c68171108a1c13310d89d647cc766b2f8 (patch) | |
| tree | b13b430149303ae6c09312b2e4cd4b122d478878 | |
| parent | 532d8fb2b0e658264c5ca10fcd903d54af00bcb3 (diff) | |
DB/Gameobject: Spawn some missing mailboxes
Spawn Missing Mailboxes in Undercity and Stormwind
* 6 In Undercity (previously only 1 mailbox was spawned in whole of undercity) - 7 in total including the 1 already spawned
* 2 In Stormwind (12 where spawned) - 14 in total including the 12 already spawned
| -rw-r--r-- | sql/updates/world/ 2014_07_24_00_world_misc.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/ 2014_07_24_00_world_misc.sql b/sql/updates/world/ 2014_07_24_00_world_misc.sql new file mode 100644 index 00000000000..be4cb4313a8 --- /dev/null +++ b/sql/updates/world/ 2014_07_24_00_world_misc.sql @@ -0,0 +1,12 @@ +SET @OGUID := 100499; + +DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+7; +INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES +(@OGUID+0, 195624, 0, 1, 1, 1483.641, 187.9667, -62.29154, -1.178734, 0, 0, -0.004363404, 0.9999905, 120, 255, 1), -- 195624 (Area: 0) +(@OGUID+1, 195626, 0, 1, 1, 1547.33, 276.8282, -62.28028, -1.626545, 0, 0, -0.004363404, 0.9999905, 120, 255, 1), -- 195626 (Area: 0) +(@OGUID+2, 195628, 0, 1, 1, 1644.318, 204.0325, -62.27996, -0.1478646, 0, 0, -0.004363404, 0.9999905, 120, 255, 1), -- 195628 (Area: 0) +(@OGUID+3, 195627, 0, 1, 1, 1644.843, 276.1801, -62.2799, 0.8283948, 0, 0, -0.004363404, 0.9999905, 120, 255, 1), -- 195627 (Area: 0) +(@OGUID+4, 195625, 0, 1, 1, 1547.062, 204.5494, -62.28075, 0.7760351, 0, 0, -0.004363404, 0.9999905, 120, 255, 1), -- 195625 (Area: 0) +(@OGUID+5, 195629, 0, 1, 1, 1554.973, 235.1078, -43.20095, 0.2524359, 0, 0, -0.004363404, 0.9999905, 120, 255, 1), -- 195629 (Area: 0) +(@OGUID+6, 195618, 0, 1, 1, -8572.362, 552.6837, 102.0039, -2.617989, 0, 0, 0.944089, -0.3296907, 120, 255, 1), -- 195618 (Area: 0) +(@OGUID+7, 195610, 0, 1, 1, -9003.499, 860.5499, 105.8766, -1.213004, 0, 0, 0.944089, -0.3296907, 120, 255, 1); -- 195610 (Area: 0) |
