This is how my AutoExec looks like:
<autoexec> <register event="losebuff_Souleater">input /ma "Cure VI" Madawc</register> <register event="losebuff_Aftermath">input /ma "Cure VI" Madawc</register> <register event="mpp_100">input /ma "Cure VI" Madawc</register> <register event="tp_???">input /ma "Fire V" Madawc</register> </autoexec>
register event="tp_???" will trigger once you get 100+ TP.
going to spellcast:
<if spell="Fire V">
<if status="engaged">
<if advanced='"$autows"="1"'>
<action type="command">input /ws Catastrophe <t></action>
</if>
</if>
<action type="cancelspell"/>
<action type="return"/>
</if>
<if spell="Water V">
<if mode="AND" TPGT="99" status="engaged">
<action type="command">input /ws Catastrophe <t></action>
</if>
<elseif advanced='"$autows"="1"'>
<action type="var" cmd="set autows 0" />
<action type="command">input /echo === AUTO WS OFF ===</action>
</elseif>
<else>
<action type="var" cmd="set autows 1" />
<action type="command">input /echo === AUTO WS ON ===</action>
</else>
<action type="cancelspell"/>
<action type="return"/>
</if>
My CTRL+1 WS macro looks like this: /ma "Water V" Madawc
What this does is to toggle AutoWS on and OFF.
<if mode="AND" CommandPrefix="/weaponskill" TPGT="99" status="engaged">
<if Spell="Catastrophe">
<action type="Equip" when="Precast" set="Cata" />
<if BuffActive="Souleater">
<action type="equip" when="done" set="SouleaterAftermath" />
</if>
<else>
<action type="equip" when="done" set="MeleeAftermath" />
</else>
</if>
<else>
<action type="Equip" when="Precast" set="WS" />
<if BuffActive="Aftermath">
<if BuffActive="Souleater">
<action type="equip" when="done" set="SouleaterAftermath" />
</if>
<else>
<action type="equip" when="done" set="MeleeAftermath" />
</else>
</if>
<else>
<if BuffActive="Souleater">
<action type="equip" when="done" set="Souleater" />
</if>
<else>
<action type="equip" when="done" set="Melee" />
</else>
</else>
</else>
<if advanced='"$autows"="1"'>
<action type="var" cmd="set autows 0" />
<action type="command">input /echo === AUTO WS OFF ===</action>
</if>
</if>
I made Spellcast turn off AutoWS after a WS.
So when I got about 50% TP I press my WS macro, then it will automatically fire off WS as soon as I get 100+ TP, neat
This post has been edited by Madawc: 02 June 2010 - 06:26 PM
Sign In »
Register Now!
Help



Back to top



















