
Originally Posted by
smafdi
At work right now so I can't test, but this should work.
Code:
<if buffactive="footwork">
<action type="equip" when="Idle|Aftercast" set="Idle"/>
<action type="equip" when="Engaged" set="Footwork" />
<if status="Engaged">
<action type="equip" when="aftercast" set="Footwork" />
</if>
</if>
<else>
<action type="equip" when="Idle|Aftercast" set="Idle"/>
<action type="equip" when="Engaged" set="H2H" />
<if status="Engaged">
<action type="equip" when="aftercast" set="H2H" />
</if>
</else>
Just to be certain, would that replace this code snippet from my file?
Code:
<action type="equip" when="resting" set="Standing"/>
<action type="equip" when="idle" set="Standing"/>
<action type="equip" when="engaged" set="Engaged"/>
<if NotStatus="Engaged">
<action type="equip" when="aftercast" set="Standing" />
</if>
<else>
<action type="equip" when="aftercast" set="Engaged" />
</else>