Originally Posted by
Ciyfex
prof version 2.4, =\ retRotation solo/single/aoe don't use exorcism and hammer of wrath..
exo
Code:
local holyPower = UnitPower("player", 9)
local FacingTarget = PQR_UnitFacing("player", "target")
if holyPower == 5 or not FacingTarget then
return false
end
if holyPower < 5 then
return true
end
exo oor
Code:
local holyPower = UnitPower("player", 9)
local crusaderStrike = GetSpellInfo(35395)
local FacingTarget = PQR_UnitFacing("player", "target")
if holyPower == 5 or not FacingTarget then
return false
end
if holyPower < 5 and IsSpellInRange(crusaderStrike, "target") == 0 then
return true
end
how
Code:
local avengingWrath = UnitBuffID("player", 31884)
local targetHealth = UnitHealth("target") / UnitHealthMax("target") * 100
local holyPower = UnitPower("player", 9)
local FacingTarget = PQR_UnitFacing("player", "target")
if holyPower == 5 or not FacingTarget then
return false
end
if avengingWrath or targetHealth <= 20 then
return true
end
how oor
Code:
local avengingWrath = UnitBuffID("player", 31884)
local targetHealth = UnitHealth("target") / UnitHealthMax("target") * 100
local holyPower = UnitPower("player", 9)
local crusaderStrike = GetSpellInfo(35395)
local FacingTarget = PQR_UnitFacing("player", "target")
if holyPower == 5 or not FacingTarget then
return false
end
if avengingWrath or targetHealth <= 20 and IsSpellInRange(crusaderStrike, "target") == 0 then
return true
end
Nothing is wrong with the code, I just tested it again on dummys and lfr; the only thing that comes to mind is, some people were reporting trouble with facing target, but the majority weren't, I am not sure of a fix or if that is even the problem you might be having.
Maybe someone else can provide some input.
Originally Posted by
Kinkeh
Yea I'm not sure, working fine for my DK...has been kind of buggy since they updated it for 5.0.4, try reporting the bug through the "Report Bug!" link at the top of the page in red.
It's extremely simple to be honest.
Mini guide I made lol, don't laugh at my amazing paint skills.
Pink = What you're reforging into after you hit the optimize button. the red text is what you're changing, the green is what you already have it reforged as. --- means unreforge it.
Red = The caps you want to meet, 769 is 7.5% for both expertise and hit.
Blue = your stat weights, that you enter before optimizing.
Yellow = the optimize button, that you hit once you're done tinkering with the stat weights/caps.
I logged out in my crappy tanking set, but you get the point :P.

No matter what I do it tries to reforge for spirit, lol I'm not sure why, it really makes me wonder what else could be wrong so I will stick with askmrrobot until then.
I made sure to report it as a bug.