If you meant change between a TP set and a Idle set, use...
Change $Idle/$TP/Resting sets if you're not using my XML. If you are, then it should already have that.Code:<if status="idle"> <equip when="idle|aftercast" set="$Idle" /> </if> <elseif status="engaged"> <equip when="engaged|aftercast" set="$TP" /> </elseif> <elseif status="resting"> <equip when="all" set="Resting" /> </elseif>
If you meant just changing between two different idle sets (Both work only when not engaged), then you do the stuff I mentioned earlier. Trigger spell would be...
Edit: If you're using my BLU XML, the code is a bit different, but I don't know if that's the case.Code:<if spell="TriggerSpellhere"> <if advanced='$VARIdle=1'> <var cmd="set VARIdle 2" /> </if> <elseif advanced='$VARIdle=2'> <var cmd="set VARIdle 1" /> </elseif> <if status="Idle"> <equip set="Idle-$VARIdle" /> </if> </if>
XI Wiki



