diff options
| author | Killyana <morphone1@gmail.com> | 2020-03-29 17:46:08 +0100 |
|---|---|---|
| committer | Killyana <morphone1@gmail.com> | 2020-03-29 17:46:08 +0100 |
| commit | 5b2b2211771618420a555f6e7e2c68722202df36 (patch) | |
| tree | 59cf77284f67708eea728cea93ed7b19d211e30f /src/server/scripts | |
| parent | 7258d00f932cfde051fecdb14f207f0a2fe5e79a (diff) | |
Boss/Script: Mr Smith will use the proc aura for Nimble Reflexes instead a script
Diffstat (limited to 'src/server/scripts')
| -rw-r--r-- | src/server/scripts/EasternKingdoms/Deadmines/boss_mr_smite.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/server/scripts/EasternKingdoms/Deadmines/boss_mr_smite.cpp b/src/server/scripts/EasternKingdoms/Deadmines/boss_mr_smite.cpp index 7fa36cf87b5..f94f71c1a11 100644 --- a/src/server/scripts/EasternKingdoms/Deadmines/boss_mr_smite.cpp +++ b/src/server/scripts/EasternKingdoms/Deadmines/boss_mr_smite.cpp @@ -33,8 +33,7 @@ enum Spells { SPELL_TRASH = 3391, SPELL_SMITE_STOMP = 6432, - SPELL_SMITE_SLAM = 6435, - SPELL_NIMBLE_REFLEXES = 6264 + SPELL_SMITE_SLAM = 6435 }; enum Equips @@ -72,7 +71,6 @@ public: { uiTrashTimer = urand(5000, 9000); uiSlamTimer = 9000; - uiNimbleReflexesTimer = urand(15500, 31600); uiHealth = 0; @@ -86,7 +84,6 @@ public: uint32 uiTrashTimer; uint32 uiSlamTimer; - uint32 uiNimbleReflexesTimer; uint8 uiHealth; @@ -140,13 +137,6 @@ public: } else uiSlamTimer -= uiDiff; - if (uiNimbleReflexesTimer <= uiDiff) - { - if (bCheckChances()) - DoCast(me, SPELL_NIMBLE_REFLEXES); - uiNimbleReflexesTimer = urand(27300, 60100); - } - else uiNimbleReflexesTimer -= uiDiff; } if ((uiHealth == 0 && !HealthAbovePct(66)) || (uiHealth == 1 && !HealthAbovePct(33))) |
