kutofski 0 Report post Posted August 1, 2017 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! :-) 0 Share this post Link to post Share on other sites
Atreyyo 0 Report post Posted August 1, 2017 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 0 Share this post Link to post Share on other sites
kutofski 0 Report post Posted August 2, 2017 Hi Atreyyo, thanks for your reply and your help! I will download the addon you mentioned and will try it out! :-) 0 Share this post Link to post Share on other sites