is there a way to know if I am casting a spell?
I would like to add a condition in my macro that would look like
Code: Select all
/cast "MySpell1"
/delay 30s !${Me.Casting}
/cast "MySpell2"
Moderator: MacroQuest Developers
Code: Select all
/cast "MySpell1"
/delay 30s !${Me.Casting}
/cast "MySpell2"
To answer your question, they fixed ${Me.Casting} in a recent zip. That will tell you if you are casting a spell.Dadelot wrote:is there a way to know if I am casting a spell?
The "better way" would be to look in the Snippets section and copy either spellcast.inc or spell_routines.inc and instead of /casting a spell you can #include the file and /call cast yourspell.Dadelot wrote:I would like to add a condition in my macro that would look likeBasically, I want to chain cast 2 spells...Code: Select all
/cast "MySpell1" /delay 30s !${Me.Casting} /cast "MySpell2"