Originally Posted by
averykey
Hey how would i make it where when i pop zealotry, it does not use exorcism or hammer of wrath?
edit:
unless it is using exorcism or hammer of wrath as a filler if judgement is down.
zealotry 85696
judgement 20271
exorcism 879
hammer of wrath 24275
edit2:
thank you for this code
Would i use it like this?
For avenging wrath
Code:
local GoAK, _, _, _, _, _, time = UnitBuffID("player", 86150)
if IsSpellInRange("Crusader Strike", "target") ~= 1 then
return false
else
if ( PQ_HolyPower== 3 or PQ_Buffs[PQ_DivinePurpose].hasBuff ) and time - GetTime() >= 25 then
return true
end
end
There.