I use the following format (this is from my ninja script) to ensure the correct equipment swaps in automatically after an action on all the jobs I currently use spellcast on.
Code:
<if status="resting|idle">
<equip when="resting|idle" set="idle" />
</if>
<if status="engaged">
<if mode="or" spell="march" buffactive="march">
<equip when="engaged|aftercast" set="NinjaTPM"/>
</if>
<else>
<equip when="engaged|aftercast" set="$Usermode" />
</else>
</if>
Is there a way to bypass this aftercast command for a specific action only? Need to bypass it for the THF script I’m making…
Basically, I want my solo TA and solo SA sets to remain equipped after SA or TA fires. I plan to link solo SA/soloTA to a random spell THF can’t use to avoid WS stacking complications of swapping to soloSA/TA gear between me hitting SA/TA and my WS macro.