Skip to content

Commit

Permalink
some mobs using spell 8734 should have variety
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonXS committed Nov 25, 2024
1 parent 93efe73 commit 1f25bfa
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions Updates/0503_spell_8734.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
-- some mobs using spell 8734 should have variety
UPDATE `creature` SET `id` = 0 WHERE `id` IN (7026) AND
`guid` IN (4622,4623,5285,5362,4618,85494,92027,86417,92264,92256,91946,92235,91940); -- already done 5367
REPLACE INTO `creature_spawn_entry` (`guid`, `entry`) VALUES
(4622, 7026),(4622, 7028),
(4623, 7026),(4623, 7028),
(5285, 7026),(5285, 7028),
(5362, 7026),(5362, 7028),
(4618, 7026),(4618, 7028),
(85494, 8547),(85494, 8553),(85494, 8555),(85494, 8556),
(92027, 8547),(92027, 8553),(92027, 8555),(92027, 8556),
(86417, 8547),(86417, 8553),(86417, 8555),(86417, 8556),
(92264, 8556), -- option missing
(92256, 8551),(92256, 8553),(92256, 8555),(92256, 8556),
(91946, 8547),(91946, 8551),(91946, 8553),(91946, 8555),(91946, 8556),
(92235, 8547),(92235, 8551),(92235, 8553),(92235, 8555),(92235, 8556),
(91940, 8547),(91940, 8551),(91940, 8553),(91940, 8555),(91940, 8556);

UPDATE `creature` SET `MovementType` = 2 WHERE `guid` IN (54748,92322,85494,92027,86417,92140,92264,92256,91946,92235,91940,53855,56696,
91959,91964,91966,91962,91965,53743,69710,53742,92124,91963,54594,69702,64959);
REPLACE INTO `creature_movement` (`Id`, `Point`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `WaitTime`, `ScriptId`) VALUES
(54748, 1, 2473.87, -3731.26, 183.611, 5.74213, 1, 855301),
(92322, 1, 2714.66, -5421.47, 161.407, 5.70723, 1, 855301),
(85494, 1, 3234.84, -3095.61, 161.422, 3.28122, 1, 855301),
(92027, 1, 3054.3, -3232.23, 148.673, 3.24631, 1, 855301),
(86417, 1, 2917.01, -3708.26, 116.688, 6.21337, 1, 855301),
(92140, 1, 2597.64, -5356.64, 175.951, 5.51524, 1, 855301),
(92264, 1, 3185.53, -3456.8, 165.529, 4.1636, 1, 855301),
(92256, 1, 3183.35, -3324.72, 163.548, 2.44346, 1, 855301),
(91946, 1, 2855.31, -3232.34, 134.27, 6.26573, 1, 855301),
(92235, 1, 3135.96, -3867.93, 135.447, 3.33358, 1, 855301),
(91940, 1, 2814.52, -3757.79, 122.507, 3.35103, 1, 855301),
(53855, 1, 2509.67, -3645.45, 186.692, 4.46804, 1, 855301),
(56696, 1, 3403.27, -5004.05, 184.712, 6.26573, 1, 855301),
(91959, 1, 3389.99, -5003.94, 167.727, 6.26573, 1, 855301),
(91964, 1, 3416.23, -5004.01, 191.051, 6.24828, 1, 855301),
(91966, 1, 3427.83, -5005.36, 195.751, 0, 1, 855301),
(91962, 1, 3446.65, -5021.23, 197.374, 0.628319, 1, 855301),
(91965, 1, 3461.96, -4971.2, 197.948, 4.76475, 1, 855301),
(53743, 1, 3432.53, -5036.13, 183.602, 0.750492, 1, 855301),
(69710, 1, 3462.65, -4959.52, 189.941, 4.7473, 1, 855301),
(53742, 1, 3460.19, -4946.9, 182.589, 4.7822, 1, 855301),
(92124, 1, 3459.29, -4934.36, 171.895, 4.7822, 1, 855301),
(91963, 1, 3480.66, -4987.98, 198.403, 3.9619, 1, 855301),
(54594, 1, 3492.42, -4974.96, 184.025, 3.9619, 1, 855301),
(69702, 1, 2562.62, -3810.43, 185.141, 2.47837, 1, 855301),
(64959, 1, 2406.19, -3801.31, 185.555, 0.628319, 1, 855301);

2 comments on commit 1f25bfa

@miraco
Copy link
Collaborator

@miraco miraco commented on 1f25bfa Nov 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do you add waypoints instead of using guid basec cai to static staying npcs?

@AnonXS
Copy link
Member Author

@AnonXS AnonXS commented on 1f25bfa Nov 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

interchanging entries so i didnt want to add it like that and their guids are still a mess and prob will change when someone respawns these

Please sign in to comment.