Jump to content
kutofski

Help with basic paladin macro

Recommended Posts

Hi Guys,

I'm new here and got some (probably stupid) problems setting up a basic macro for my paladin.

If I use

/cast seal of the crusader
/cast judgement

only the first cast is done. So I figured I need sth to stop the first cast. Using

/cast seal of the crusader
/script SpellStopCasting()
/cast judgement

will do nothing, it just says "Interrupted".

When trying

/cast holy light
/script SpellStopCasting()

it works, my pala briefly tries to start healing and is stopped right away.

Can anyone explain me why

/cast seal of the crusader
/script SpellStopCasting()
/cast judgement

is not working at all? And of course, also can enlighten of what I need to use in order to make this macro work?

Thanks a lot! :-)

Share this post


Link to post
Share on other sites
2 hours ago, kutofski said:

Hi Guys,

I'm new here and got some (probably stupid) problems setting up a basic macro for my paladin.

If I use

/cast seal of the crusader
/cast judgement

only the first cast is done. So I figured I need sth to stop the first cast. Using

/cast seal of the crusader
/script SpellStopCasting()
/cast judgement

will do nothing, it just says "Interrupted".

When trying

/cast holy light
/script SpellStopCasting()

it works, my pala briefly tries to start healing and is stopped right away.

Can anyone explain me why

/cast seal of the crusader
/script SpellStopCasting()
/cast judgement

is not working at all? And of course, also can enlighten of what I need to use in order to make this macro work?

Thanks a lot! :-)

In your first macro you need to first make a check to see if you already have seal of crusader buffed on your character, else it will just keep casting seal of crusader.

SuperMacro is an excellent addon to make macros with, I suggest you download that. Then you can use this macro.

/script if not buffed("Seal of the Crusader", "player") then CastSpellByName("Seal of the Crusader") end CastSpellByName("Judgement")

You will of course need to press the macro twice if you don't already have Seal of the Crusader buffed, since you can't execute 2 spells at the same time.

In your second macro you added /script SpellStopCasting() which does exactly what it says, it cancels your cast. Remove that or put it first before you cast Holy Light to make it work.

/script SpellStopCasting()

/cast Holy Light

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×