Originally Posted by
Deathsmind
Is there anyway of adding Seal of Insight to the ability list and making it priority? Seal of Truth is now the weakest of them all because of the nerf to it from prot pallys, they get 80% less damage from it now. Seal of Insight is now the go to. Also need to have the new abilities, i use Holy Prism to help out on healing, any way to add all 3 and it know which one you have? I need to test everything else out but it looks good from just looking at it, seems a lot more easier code then the other ones i have seen.
If u want in single rotation SoI then just change in SoT ability:
Code:
local myAura = GetShapeshiftForm("player")
if myAura == 3 then
return false
end
if not myAura ~= 1 then
CastShapeshiftForm(3)
return true
end
change these two lines
Code:
if myAura == 1 then
CastShapeshiftForm(1)
to
Code:
if myAura == 3 then
CastShapeshiftForm(3)