Page 1 of 1

Macro for Judgement

PostPosted: Wed Feb 17, 2016 12:34 pm
by lapzwans
Hello there,

Can you guys help me with a macro for Judgement.

I want the macro to cast Judgement and then Seal of Righteousness.

Something like this?
/cast Judgement
/cast Seal of Righteousness(Rank 2)

Thanks in advance :)

Re: Macro for Judgement

PostPosted: Wed Feb 17, 2016 4:04 pm
by GeniusTT
With "Super Macro" you can do it like this:

Code: Select all
/script if buffed("Seal of Righteousness") then CastSpellByName("Judgement()") else CastSpellByName("Seal of Righteousness(Rank 2)") end


notice: you have to click this macro twice to judge and recast the seal

Re: Macro for Judgement

PostPosted: Thu Feb 18, 2016 5:56 am
by RedBanner
This is something I was playing around with on my low level pally:

Code: Select all
/script if buffed("Seal of") then cast("Judgement") elseif not buffed("Judgement of the Crusader", "target") then cast("Seal of the Crusader") elseif not buffed("Seal of Righteousness") then cast("Seal of Righteousness") end


This is also a SuperMacro macro. It will cast Judgement if any seal is on you, then look at the target to see if Crusader is on it, and buff you with Crusader if not or buff you with Righteousness if Crusader is on the target.

So it makes sure the target gets Crusader, then uses Righteousness. You can sub any seals or judgements you want. 3 buttons into one.