Help with a macro
Posted: Wed Sep 16, 2015 12:54 am
Hey guys, I trying to make a macro to my paladin that do this:
Start attack > Use Seal of Righteousness > Use Judgement > Use Seal of the Crusader
At the moment the macro is it:
But it not working =(
Please can somebody help me make this macro ? If possible adding something that will only use the spell if it's not on cooldown ?
Start attack > Use Seal of Righteousness > Use Judgement > Use Seal of the Crusader
At the moment the macro is it:
- Code: Select all
/script AttackTarget(); i=1 if (i == 1 ) then CastSpellByName("Seal of Righteousness") i=i+1; else if (i == 2) then CastSpellByName("Judgement") i=i+1; else if (i == 3) then CastSpellByName("Seal of the Crusader") i=1; end; end
But it not working =(
Please can somebody help me make this macro ? If possible adding something that will only use the spell if it's not on cooldown ?