diff options
author | CraftedRO <24683355+CraftedRO@users.noreply.github.com> | 2025-06-10 15:22:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-10 14:22:00 +0200 |
commit | 8e9b8f6991097c242bbefb911533ccf4e1a1597b (patch) | |
tree | e67d6807f6e311f4ee9fd440286fc19217ac0a2d /src | |
parent | 539f6e4ff446bbcbee1eb46531f288452eafd19f (diff) |
Scripts/Stratholme: Add waypoints to Timmy the Cruel (#31023)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp b/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp index 54cc338f123..99ed113980c 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp @@ -48,7 +48,11 @@ enum StratholmeMisc SAY_YSIDA_SAVED = 0 }; -Position const timmyTheCruelSpawnPosition = { 3625.358f, -3188.108f, 130.3985f, 4.834562f }; +enum SpawnGroups +{ + SPAWN_GROUP_STR_TIMMY = 327 +}; + EllipseBoundary const beforeScarletGate(Position(3671.158f, -3181.79f), 60.0f, 40.0f); enum class StratholmeGateTrapType : uint8 @@ -137,7 +141,7 @@ class instance_stratholme : public InstanceMapScript { if (++scarletsKilled >= TIMMY_THE_CRUEL_CRUSADERS_REQUIRED) { - instance->SummonCreature(NPC_TIMMY_THE_CRUEL, timmyTheCruelSpawnPosition); + instance->SpawnGroupSpawn(SPAWN_GROUP_STR_TIMMY); timmySpawned = true; } } |