mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 02:20:27 +00:00
fix(DB/creature): More ZulGurub pathing (#12334)
This commit is contained in:
43
data/sql/updates/pending_db_world/zg_path.sql
Normal file
43
data/sql/updates/pending_db_world/zg_path.sql
Normal file
@@ -0,0 +1,43 @@
|
||||
--
|
||||
SET @NPC := 51384;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `wander_distance`=0,`MovementType`=0,`position_x`=-11625.495,`position_y`=-1686.3772,`position_z`=39.85919 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
|
||||
SET @NPC := 49705;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `wander_distance`=0,`MovementType`=2,`position_x`=-12304.316,`position_y`=-1828.3707,`position_z`=130.3816 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`visibilityDistanceType`,`auras`) VALUES (@NPC,@PATH,0,0,1,0,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-12304.316,-1828.3707,130.3816,0,0,0,0,100,0),
|
||||
(@PATH,2,-12316.513,-1835.5278,130.3816,0,0,0,0,100,0),
|
||||
(@PATH,3,-12333.007,-1831.8125,130.3816,0,0,0,0,100,0),
|
||||
(@PATH,4,-12302.664,-1882.1113,130.38538,0,0,0,0,100,0),
|
||||
(@PATH,5,-12292.008,-1899.5505,130.28304,0,0,0,0,100,0),
|
||||
(@PATH,6,-12277.654,-1913.2064,130.3583,0,0,0,0,100,0),
|
||||
(@PATH,7,-12253.349,-1920.6671,130.39581,0,0,0,0,100,0),
|
||||
(@PATH,8,-12232.099,-1935.3337,130.39581,0,0,0,0,100,0),
|
||||
(@PATH,9,-12253.349,-1920.6671,130.39581,0,0,0,0,100,0),
|
||||
(@PATH,10,-12277.654,-1913.2064,130.3583,0,0,0,0,100,0),
|
||||
(@PATH,11,-12292.008,-1899.5505,130.28304,0,0,0,0,100,0),
|
||||
(@PATH,12,-12302.664,-1882.1113,130.38538,0,0,0,0,100,0),
|
||||
(@PATH,13,-12308.578,-1866.2955,130.3816,0,0,0,0,100,0),
|
||||
(@PATH,14,-12321.762,-1855.7916,130.3816,0,0,0,0,100,0),
|
||||
(@PATH,15,-12319.301,-1837.3279,130.3816,0,0,0,0,100,0),
|
||||
(@PATH,16,-12333.007,-1831.8125,130.3816,0,0,0,0,100,0),
|
||||
(@PATH,17,-12316.513,-1835.5278,130.3816,0,0,0,0,100,0),
|
||||
(@PATH,18,-12304.316,-1828.3707,130.3816,0,0,0,0,100,0),
|
||||
(@PATH,19,-12291.655,-1821.4,130.38538,0,0,0,0,100,0),
|
||||
(@PATH,20,-12321.201,-1840.0312,130.3816,0,0,0,0,100,0),
|
||||
(@PATH,21,-12326.542,-1865.9154,130.3816,0,0,0,0,100,0),
|
||||
(@PATH,22,-12333.967,-1876.9497,130.3084,0,0,0,0,100,0),
|
||||
(@PATH,23,-12345.774,-1883.2954,130.3084,0,0,0,0,100,0),
|
||||
(@PATH,24,-12357.866,-1904.3063,130.4747,0,0,0,0,100,0),
|
||||
(@PATH,25,-12345.774,-1883.2954,130.3084,0,0,0,0,100,0),
|
||||
(@PATH,26,-12333.967,-1876.9497,130.3084,0,0,0,0,100,0),
|
||||
(@PATH,27,-12326.542,-1865.9154,130.3816,0,0,0,0,100,0),
|
||||
(@PATH,28,-12321.201,-1840.0312,130.3816,0,0,0,0,100,0),
|
||||
(@PATH,29,-12291.655,-1821.4,130.38538,0,0,0,0,100,0);
|
||||
Reference in New Issue
Block a user