Just updating my bear profile (As i hadnt in a couple months now)
Just having an issue with Berserk now ( IN Bearform)
Basically I only want to trigger Berserk in bear, when the pulverize buff is active and has > 16 seconds remaining on the pulverize buff duration.
This will maximize dmg output for bears (+9% crit), but more importantly will proc savage defense absorbs nearly at a 90% uptime.
This whole timing thing has my head in circles.
Berserk Spell ID: (50334)
Pulverize Buff ID on player: (80951)
I was trying to get this to work before even adding in the pulverize buff duration and it wasnt working either.
Code:
local targetLevel = UnitLevel("target")
local playerPower = UnitPower("player")
local Pulverize = (UnitBuffID("player",80951)
if playerPower > 20 and Pulverize ~= nil then
return true
end
end
else
if targetLevel == -1 or targetLevel >= 87 then
if playerPower > 25 and Pulverize ~= nil then
return true
end
end
end
This is the last adjustment needed to update my profile.... Any help greatly appreciated!