From a2ef8dbc8e0cb9bdb980fffa8abb4bfca4f5a7be Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Mon, 29 Jul 2019 15:03:45 +0200 Subject: [PATCH] DB/TotT: added formation data for the two upper trash groups in Commander Ulthok's and Lady Naz'jar's room --- .../world/custom/custom_2019_07_29_06_world.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 sql/updates/world/custom/custom_2019_07_29_06_world.sql diff --git a/sql/updates/world/custom/custom_2019_07_29_06_world.sql b/sql/updates/world/custom/custom_2019_07_29_06_world.sql new file mode 100644 index 00000000000..d06f9052215 --- /dev/null +++ b/sql/updates/world/custom/custom_2019_07_29_06_world.sql @@ -0,0 +1,17 @@ +SET @LEADER := 255000; +DELETE FROM `creature_formations` WHERE `leaderGUID`= @LEADER; +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(@LEADER, 255000, 0, 0, 3, 0, 0), +(@LEADER, 255004, 0, 0, 3, 0, 0), +(@LEADER, 254998, 0, 0, 3, 0, 0), +(@LEADER, 254999, 0, 0, 3, 0, 0), +(@LEADER, 255001, 0, 0, 3, 0, 0); + +SET @LEADER := 255021; +DELETE FROM `creature_formations` WHERE `leaderGUID`= @LEADER; +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(@LEADER, 255021, 0, 0, 3, 0, 0), +(@LEADER, 255020, 0, 0, 3, 0, 0), +(@LEADER, 255022, 0, 0, 3, 0, 0), +(@LEADER, 255019, 0, 0, 3, 0, 0), +(@LEADER, 255023, 0, 0, 3, 0, 0);