Re: Shaman Healing Rotation
Quote:
Originally Posted by sorrowharvester
MACRO 1 "Gorehack" Spell_Nature_MagicImmunity
/castsequence [target=Gorehack] [help] [modifier:ctrl] reset=5 Healing Wave,,,,
/stopmacro [modifier:ctrl]
/target Gorehack
END
When you put options in separate brackets, they are OR-ed. If you want AND, you put them in the same bracket. As you put it, the first option [target=Gorehack] will always be true, the spell is cast and the other options ( [help] [modifier:ctrl] ) never considered. If you press just F1, isn't the heal still cast?
/castsequence [target=Gorehack,help,modifier:ctrl] reset=5 Healing Wave,,,,
Re: Shaman Healing Rotation
Quote:
Originally Posted by maqz
Quote:
Originally Posted by sorrowharvester
MACRO 1 "Gorehack" Spell_Nature_MagicImmunity
/castsequence [target=Gorehack] [help] [modifier:ctrl] reset=5 Healing Wave,,,,
/stopmacro [modifier:ctrl]
/target Gorehack
END
When you put options in separate brackets, they are OR-ed. If you want AND, you put them in the same bracket. As you put it, the first option [target=Gorehack] will always be true, the spell is cast and the other options ( [help] [modifier:ctrl] ) never considered. If you press just F1, isn't the heal still cast?
/castsequence [target=Gorehack,help,modifier:ctrl] reset=5 Healing Wave,,,,
Gah, yes. I changed that before testing it and then posting. Forgot about that.
Thanks for pointing it out :/
Re: Shaman Healing Rotation
Quote:
Originally Posted by maqz
When you put options in separate brackets, they are OR-ed. If you want AND, you put them in the same bracket.
Wow, that's an amazingly useful piece of information to have. This would probably explain why some of my macros behave weirdly at times. Thank you for this!