
Originally Posted by
HKR
Enhances fast cast gear, where in the spell casting should it be equipped, pre or mid?
Right now I have it equipped for the pre-cast and switch out all my gear in midcast, but my limited testing didn't seem to show any improvement in casting speed.
Precast, *but* you also need to delay the start of casting long enough for it to equip. Unless you're shaving at least 0.2-0.3 seconds from cast time, swapping to FC gear won't speed you up.
Code:
<action type="castdelay" delay="0.3"/>
<equip when="precast" Set="Fastcast"/>

Originally Posted by
test123
i'm puzzled on how to get parade gorget on if HP>85% and MP<100% when idle, anyone has code?
This should work for that case when disengaged. Also includes code to swap it back in if MP becomes less than 5%, even if engaged.
I'd suggest replacing all mpp/hpp with mp/hp and using the real values (given 1000hp/1000mp, mplt="1000", hpgt="850") to allow for fluctuations in max hp/mp if you hit a macro before you've returned to your idle set, but this will cover most times.
Code:
<if status = "engaged">
<action type="equip" when="aftercast|idle" set="tp"/>
<if mpplt="5" hppgt="85">
<action type="equip" when="aftercast|idle|resting"><neck>Parade Gorget</neck></action>
</if>
</if>
<elseif mppaftercastlt="100" hppgt="85">
<action type="equip" when="aftercast|idle" set="idle"/>
<action type="equip" when="aftercast|idle"><neck>Parade Gorget</neck></action>
</elseif>
<else>
<action type="equip" when="aftercast|idle" set="idle"/>
</else>