forked from cmangos/wotlk-db
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
waypoints
- Loading branch information
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
-- Stormwatcher 28877 | ||
DELETE FROM creature_addon WHERE guid IN (501015); | ||
DELETE FROM creature_movement WHERE id IN (501015); | ||
DELETE FROM game_event_creature WHERE guid IN (501015); | ||
DELETE FROM game_event_creature_data WHERE guid IN (501015); | ||
DELETE FROM creature_battleground WHERE guid IN (501015); | ||
DELETE FROM creature_linking WHERE guid IN (501015); | ||
DELETE FROM creature where guid IN (501015); | ||
INSERT INTO creature (guid, id, map, spawnMask, phaseMask, position_x, position_y, position_z, orientation, spawntimesecsmin, spawntimesecsmax, spawndist, MovementType) VALUES | ||
(501015,28877,571,1,1,5987.537,5979.175,55.01433,0,300,300,0,4); | ||
UPDATE creature SET position_x = 5884.35, position_y = 6082.44, position_z = 60.8372, spawndist = 0, MovementType = 4 WHERE guid = 523754; | ||
UPDATE creature SET position_x = 6252.148, position_y = 5776.622, position_z = 45.38485, spawndist = 0, MovementType = 4 WHERE guid = 523755; | ||
UPDATE creature SET position_x = 6357.009, position_y = 5816.03, position_z = 57.80745, spawndist = 0, MovementType = 4 WHERE guid = 523756; | ||
UPDATE creature SET position_x = 6097.143, position_y = 5934.571, position_z = 54.73834, spawndist = 0, MovementType = 4 WHERE guid = 523757; | ||
-- waypoints | ||
DELETE FROM creature_movement WHERE Id IN (523754,523755,523756,523757); | ||
INSERT INTO creature_movement (id, point, positionx, positiony, positionz, orientation, waittime, scriptid) VALUES | ||
-- 501015 | ||
(501015,1,5987.537,5979.175,55.01433,100,2000,0), | ||
(501015,2,5964.441,5983.22,54.26162 ,100,0,0), | ||
(501015,3,5954.452,6000.104,57.37743,100,0,0), | ||
(501015,4,5934.518,6022.311,56.75243,100,0,0), | ||
(501015,5,5918.34,6034.6,57.7063,100,0,0), | ||
(501015,6,5916.51,6052.21,60.8565,100,2000,0), | ||
-- 523754 | ||
(523754,1 ,5884.35,6082.44,60.8372,100,2000,0), | ||
(523754,2 ,5871.952,6088.182,59.13168,100,0,0), | ||
(523754,3 ,5869.471,6120.908,57.42928,100,0,0), | ||
(523754,4 ,5858.89,6140.84,56.9659,100,0,0), | ||
(523754,5 ,5846.72,6156.9,53.4936 ,100,0,0), | ||
(523754,6 ,5838.92,6160.58,52.0675,100,0,0), | ||
(523754,7 ,5823.25,6163.98,54.0743,100,0,0), | ||
(523754,8 ,5799.76,6163.58,55.606 ,100,0,0), | ||
(523754,9 ,5780.1,6162.54,56.5089 ,100,0,0), | ||
(523754,10,5767.8,6163.21,58.4557 ,100,0,0), | ||
(523754,11,5761.96,6175.05,59.5124,100,2000,0), | ||
-- 523755 | ||
(523755,1 ,6252.148,5776.622,45.38485,100,2000,0), | ||
(523755,2 ,6293.148,5777.343,48.75985,100,0,0), | ||
(523755,3 ,6315.876,5766.052,49.57132,100,0,0), | ||
(523755,4 ,6336.806,5751.384,50.11419,100,0,0), | ||
(523755,5 ,6348.347,5729.963,51.1244 ,100,0,0), | ||
(523755,6 ,6352.221,5723,53.2494,100,0,0), | ||
(523755,7 ,6356.771,5710.609,53.6244 ,100,0,0), | ||
(523755,8 ,6367.198,5708.746,53.48195,100,0,0), | ||
(523755,9 ,6378.523,5698.505,53.12866,100,0,0), | ||
(523755,10,6390.501,5689.878,55.87866,100,2000,0), | ||
-- 523756 | ||
(523756,1,6357.009,5816.03,57.80745,100,2000,0), | ||
(523756,2,6340.655,5813.981,53.93245,100,0,0), | ||
(523756,3,6320.745,5808.393,53.33389,100,0,0), | ||
(523756,4,6287.545,5806.91,50.77678 ,100,0,0), | ||
(523756,5,6258.076,5804.292,46.60287,100,0,0), | ||
(523756,6,6251.218,5786.583,45.63485,100,0,0), | ||
(523756,7,6249.073,5756.687,48.08655,100,0,0), | ||
(523756,8,6252.708,5732.587,47.56175,100,2000,0), | ||
-- 523757 | ||
(523757,1,6097.143,5934.571,54.73834,100,2000,0), | ||
(523757,2,6132.959,5924.418,56.75366,100,0,0), | ||
(523757,3,6168.486,5921.835,56.97091,100,0,0), | ||
(523757,4,6191.149,5919.376,56.72091,100,0,0), | ||
(523757,5,6205.862,5912.272,53.4913,100,0,0), | ||
(523757,6,6223.819,5906.893,51.6163,100,2000,0); |