Need Help Trying To Make A Xml For My Nin

言語: JP EN DE FR
2010-06-21
New Items
users online
フォーラム » FFXI » Jobs » Ninja » need help trying to make a xml for my nin
need help trying to make a xml for my nin
 Fenrir.Nightfyre
Offline
サーバ: Fenrir
Game: FFXI
user: Nightfyre
Posts: 11680
By Fenrir.Nightfyre 2011-09-24 19:03:44  
That method still runs into the issue of canceling if Quick Magic procs on Ichi when you currently have Ni shadows active, leaving you with no shadows. I ended up going with a manual setup where casting any Utsusemi spell midcast would cancel my shadows and then trigger Dancing Chains a couple seconds later to go back to my idle/engaged gear.
 Bismarck.Snprphnx
Offline
サーバ: Bismarck
Game: FFXI
user: Snprphnx
Posts: 2689
By Bismarck.Snprphnx 2011-09-24 21:38:28  
whats the code for engaged body to swap from AF1 to something else if i have capped delay reduction?
 Fenrir.Nightfyre
Offline
サーバ: Fenrir
Game: FFXI
user: Nightfyre
Posts: 11680
By Fenrir.Nightfyre 2011-09-24 22:56:11  
In theory it'd be managed in part by AutoExec, but marches have the same buffid and thus AutoExec doesn't seem to recognize the second march correctly. When I tried it a while back, it'd recognize the first march gained but not the second, then only recognize that the buff was lost once both had worn.

You can still do something like this for AutoExec:
Code
<register event="gainbuff_March" silent="true">sc var inc Marches; input /ma "Dancing Chains" <t></register>
	<register event="losebuff_March" silent="true">sc var dec Marches; input /ma "Dancing Chains" <t></register>


and then have an if buffactive="march" rule in Spellcast, but it won't work perfectly.
 Bismarck.Snprphnx
Offline
サーバ: Bismarck
Game: FFXI
user: Snprphnx
Posts: 2689
By Bismarck.Snprphnx 2011-09-25 22:50:24  
well im making a brd mule, so unless it some strange situation, i will always have 2x march up, so should simplify the issue
 Asura.Planet
Offline
サーバ: Asura
Game: FFXI
user: Jovant
Posts: 145
By Asura.Planet 2011-09-25 23:21:48  
im having sortof the same problem and cant see whats wrong if someone can enlighten me... (concerning my feet swaps, it wont work both imputed like this)
Code
<rules>

     <action type="equip" when="resting" set="Standard" /> 
     <action type="equip" when="idle" set="Standard" /> 
     <action type="equip" when="engaged" set="Engaged" />  
                
<!-- Nighttime/Daytime -->   
   
         <if Mode="OR" TimeLT="5.59" TimeGT="18.00">
         <if Status="Idle">
         <action type="equip" when="Idle|aftercast" set="Nightime" />
             </if>
			 </if>
	 	<if mode="or" timelt="17.59" timegt="6.00">
		<if Status="Idle">
        <action type="equip" when="Idle|aftercast" set="Daytime" />
             </if>
             </if>


nightime = nin af feet
daytime = danzo
Log in to post.