mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-17 02:50:29 +00:00
fix(DB/creature_formations): Elite patrolling positions (#3795)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
DELETE FROM `creature_formations` WHERE `memberGUID` IN (9203, 9204, 9205) AND `leaderGUID` = 9203;
|
||||
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
|
||||
(9203, 9203, 0, 0, 2, 0, 0),
|
||||
(9203, 9204, 3, 45, 2, 0, 0),
|
||||
(9203, 9205, 3, 315, 2, 0, 0);
|
||||
|
||||
DELETE FROM `creature_addon` WHERE guid IN (9204,9205);
|
||||
DELETE FROM `waypoint_data` WHERE id IN (92040,92050);
|
||||
UPDATE `creature` SET `MovementType`=0, `wander_distance`=0 WHERE `id` IN (2477,7170);
|
||||
UPDATE `creature_template` SET `MovementType`=0 WHERE `entry` IN (2477,7170);
|
||||
UPDATE `creature_template` SET `Speed_Walk`=1.47, `Speed_Run`=1.14286 WHERE `entry` IN (2478);
|
||||
UPDATE `creature_template` SET `Speed_Walk`=1.48, `Speed_Run`=1.14286 WHERE `entry` IN (2477,7170);
|
||||
Reference in New Issue
Block a user