Skip to content

Commit

Permalink
misc mop fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalOS committed May 21, 2024
1 parent 3856468 commit d31646e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion DBM-Pandaria/Nalak.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ local specWarnLightningTether = mod:NewSpecialWarningMoveTo(136339, nil, nil, ni
local specWarnArcNova = mod:NewSpecialWarningRun(136338, "Melee", nil, 2, 4, 2)

local timerStormcloudCD = mod:NewCDTimer(21.5, 136340, nil, nil, nil, 3)
local timerLightningTetherCD = mod:NewCDTimer(30.5, 136339, nil, nil, nil, 3)--Needs more data, they may have tweaked it some.
local timerLightningTetherCD = mod:NewCDTimer(27.9, 136339, nil, nil, nil, 3)--Needs more data, they may have tweaked it some.
local timerArcNovaCD = mod:NewCDTimer(35.5, 136338, nil, nil, nil, 2)

mod:AddRangeFrameOption(10, 136340)
Expand Down
2 changes: 1 addition & 1 deletion DBM-Raids-MoP/HeartofFear/Shekzeer.lua
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ local timerPhase1 = mod:NewNextTimer(156.4, 125304, nil, nil, nil, 6)--156.4
local timerDispatchCD = mod:NewCDTimer(12, 124077)--Every 12-15 seconds on 25 man. on 10 man i've heard it's every 20ish?
local timerPhase2 = mod:NewNextTimer(151, 125098)--152 until trigger, but probalby 150 or 151 til adds are targetable.
local timerCalamityCD = mod:NewCDTimer(6, 124845, nil, "Healer")
local timerVisionsCD = mod:NewCDTimer(19.5, 124862)
local timerVisionsCD = mod:NewCDTimer(17, 124862)
local timerConsumingTerrorCD = mod:NewCDTimer(32, 124849, nil, "-Tank")
local timerCorruptedDissonance = mod:NewNextTimer(20, 126122)--10 seconds after first and 20 seconds after
local timerHeartOfFear = mod:NewBuffFadesTimer(6, 125638)
Expand Down
2 changes: 1 addition & 1 deletion DBM-Raids-MoP/MogushanVaults/Elegon.lua
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function mod:OnCombatStart(delay)
self.vb.powerCount = 0
table.wipe(closedCircuitTargets)
table.wipe(stunTargets)
timerBreathCD:Start(3.4-delay)--Will use instant on pull if tank range pulls it
-- timerBreathCD:Start(3.4-delay)--Will use instant on pull if tank range pulls it (which is most of time so disabling timer)
timerProtectorCD:Start(10-delay, 1)
berserkTimer:Start(-delay)
end
Expand Down
2 changes: 1 addition & 1 deletion DBM-Raids-MoP/MogushanVaults/Feng.lua
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ local timerEpicenterCD = mod:NewCDCountTimer(27.9, 116018, nil, nil, nil, 2)
local timerEpicenter = mod:NewBuffActiveTimer(10, 116018, nil, nil, nil, 5, nil, DBM_COMMON_L.TANK_ICON..DBM_COMMON_L.HEALER_ICON)
--Fire/Spear
local timerFlamingSpear = mod:NewTargetTimer(20, 116942, nil, false, 2, 5, nil, DBM_COMMON_L.TANK_ICON)
local timerFlamingSpearCD = mod:NewCDTimer(9, 116942, nil, "Tank", nil, 5, nil, DBM_COMMON_L.TANK_ICON)--8-11second variation, usually 10 though.
local timerFlamingSpearCD = mod:NewCDTimer(8, 116942, nil, "Tank", nil, 5, nil, DBM_COMMON_L.TANK_ICON)--8-11second variation, usually 10 though.
local timerWildSpark = mod:NewTargetTimer(5, 116784, nil, false, 2, 5)
local timerDrawFlame = mod:NewBuffActiveTimer(6, 116711, nil, nil, nil, 5, nil, DBM_COMMON_L.TANK_ICON..DBM_COMMON_L.HEALER_ICON)
local timerDrawFlameCD = mod:NewNextCountTimer(30, 116711, nil, nil, nil, 2)--30 seconds after last ended.
Expand Down
4 changes: 2 additions & 2 deletions DBM-Raids-MoP/MogushanVaults/WillofEmperor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ local rageTimers = {
[1] = 33,
[2] = 33,
[3] = 33,
[4] = 33,--24.3 now? no idea, maybe this one is just random 33-40, rest are dead on though.
[4] = 24.3,--Confirmed lower than rest for some reason, seen it multiple times now
[5] = 33,
[6] = 83,
[7] = 33,--15.5?
Expand Down Expand Up @@ -161,7 +161,7 @@ function mod:OnCombatStart(delay)
timerCourageActivates:Start(69-delay, 1)
timerBossesActivates:Start(101-delay)
else
timerStrengthActivates:Start(42-delay, 1)
timerStrengthActivates:Start(41.8-delay, 1)
timerCourageActivates:Start(75-delay, 1)
timerBossesActivates:Start(-delay)
end
Expand Down

0 comments on commit d31646e

Please sign in to comment.