Having a bit of trouble with this code (for obliterate).
Code:
if GetSpellCooldown(45529) >= 3 or GetSpellCooldown(45529) <= 27 then
return false
end
This version does nothing. i.e rotation is unchanged if it's removed.
Code:
if GetSpellCooldown(45529) <= 3 or GetSpellCooldown(45529) >= 27 then
return true
end
This version(logically the same thing), spams obliterate whenever it can blowing unholy runes whenever they're up.
What I want it to do is to use obliterate when and only when blood tap is up (give or take 3 seconds either side), and game them when it's not for Runic Empowerment procs..