I have one question...How do I change (preferably on the fly) the gear set that I swap to after I WS/blue magic/etc.
Meaning this: I want to be able to switch to my PDT/Evasion set as a default instead of TP sometimes...Or do I just do that manually in the spellcast before I venture off into those specific situations?
Most people use
Yugl's xml, some sort of variation based off of his, or at least something that incorporates a lot of the same thing.
In this xml, he uses "Poison V" as the trigger spell to change between TP sets. This part here:
Code
<!--- Change TP set type --->
<if spell="Poison V">
<cancelspell />
<if advanced='"$VAR-TP"="HASTE"'>
<var cmd="set VAR-TP ACC" />
</if>
<elseif advanced='"$VAR-TP"="ACC"'>
<var cmd="set VAR-TP EVA" />
</elseif>
<elseif advanced='"$VAR-TP"="EVA"'>
<var cmd="set VAR-TP HASTE" />
</elseif>
<addtochat color="135">TP Variable: $VAR-TP</addtochat>
<if status="engaged">
<command>Dancing Chains</command>
</if>
</if>
So all you would need to do would be to either type //poison5 or you could make a macro (/ma "Poison V" <t>, or something like that) that would toggle between TP sets. You can even add in other sets. For instance, mine looks like this:
Code
<!--- Change TP set type --->
<if spell="Poison V">
<cancelspell />
<if advanced='"$VAR-TP"="MAVI"'>
<var cmd="set VAR-TP THAUMAS" />
</if>
<elseif advanced='"$VAR-TP"="THAUMAS"'>
<var cmd="set VAR-TP EVA1" />
</elseif>
<elseif advanced='"$VAR-TP"="EVA1"'>
<var cmd="set VAR-TP TPPDT" />
</elseif>
<elseif advanced='"$VAR-TP"="TPPDT"'>
<var cmd="set VAR-TP MAVI" />
</elseif>
<addtochat color="135">TP Variable: $VAR-TP</addtochat>
<if status="engaged">
<command>Dancing Chains</command>
</if>
</if>
It has my basic Thaumas-based TP set, then switches to a set that adds a bit of refresh if needed, then evasion, then PDT, then finally back to the Thaumas set.
It will default back to whichever set you have selected after every spell/WS like you asked for also.