Trying to create a simple macro

I am trying to create a simple macro that just goes down a list and repeats. I’ve been trying to figure this version out but it’s not to easy for me.

/Cast Hammer of Wrath
/Cast Avenger’s Shield
/Cast Consecration
/Cast Judgment
/Cast Hammer of the Righteous
/Cast Shield of the Righteous
/Cast Word of Glory

Can’t seem to get it to work. If any can comment would appreciate it. I want to use this with auto hotkey for 1 button. Thank you.

Just put each of those in their own action blocks and you are done

1 Like

Thank you very much for the response.

Got it working great! Except it always pulls the next pack of enemies.

not sure if it is what you want but
you can add a conditional where the macro only works if you are in combat.

using your example of spells below

/Cast Hammer of Wrath [combat]
/Cast Avenger’s Shield [combat]
/Cast Consecration [combat]
/Cast Judgment [combat]
/Cast Hammer of the Righteous [combat]
/Cast Shield of the Righteous [combat]
/Cast Word of Glory [combat]

That should make it only go off if you are in combat, You would have to enter combat for the macro to start.

That will stop it from pulling next set of mobs hopefully