NIN AF Feet & AutoExec

Language: JP EN DE FR
2010-09-08
New Items
users online
Forum » FFXI » Jobs » Ninja » NIN AF Feet & AutoExec
NIN AF Feet & AutoExec
 Quetzalcoatl.Mitosis
Offline
Server: Quetzalcoatl
Game: FFXI
user: xMitosisx
Posts: 317
By Quetzalcoatl.Mitosis 2011-08-13 08:51:34
Link | Quote | Reply
 
I looked through all the topic posted in the NIN forums, and couldn't find what I was looking for.

My intent is to have autoexec change my feet to AF anytime I'm not engaged and the time is appropriate.

Anyone have any links where this is talked about? Have some of your own code you could post?

Thanks!
 Cerberus.Kvazz
Offline
Server: Cerberus
Game: FFXI
user: kvazz
Posts: 5345
By Cerberus.Kvazz 2011-08-13 09:30:23
Link | Quote | Reply
 
Not very familiar with autoexec, but is'nt it better to use spellcast for this?
 Quetzalcoatl.Mitosis
Offline
Server: Quetzalcoatl
Game: FFXI
user: xMitosisx
Posts: 317
By Quetzalcoatl.Mitosis 2011-08-13 09:35:52
Link | Quote | Reply
 
I use spellcast. The downside is, I'd have to physically do something to trigger a rule to change into those feet. With autoexec, it would do it automatically.

Now, off to bed for me :p
 Odin.Rikiyame
Offline
Server: Odin
Game: FFXI
user: Rikiyame
Posts: 401
By Odin.Rikiyame 2011-08-13 09:44:59
Link | Quote | Reply
 
No clue if this will help:

Possible fix
 Fenrir.Nightfyre
Offline
Server: Fenrir
Game: FFXI
user: Nightfyre
Posts: 11680
By Fenrir.Nightfyre 2011-08-13 15:54:49
Link | Quote | Reply
 
Autoexec:
Code xml
<register event="time_7.00|time_17.00" silent="true">input /ma "Dancing Chains" <t></register>


Spellcast:
Code xml
<sets>
<set Name="Idle"><!-- blah blah put your idle gear here -->
<feet>$IdleFeet</feet>
</set>
</sets>
<variables>
<var name="IdleFeet">Danzo Sune-ate</var>
</variables>
<rules>
<if spell="Dancing Chains">
			<if mode="OR" TimeLT="7.00" TimeGT="16.59">
				<var cmd="set IdleFeet Nin. Kyahan +1" /> 
			</if>
			<else>
				<var cmd="set IdleFeet Danzo Sune-ate" /> 
			</else>
			<if status="idle"><equip when="precast" set="Idle" /></if>
			<elseif status="engaged"><equip when="precast" set="$Melee" /></elseif>
			<cancelspell />
			<return />
		</if>
<if status="idle">
			<equip when="idle|aftercast" set="Idle" />
		</if>
</rules>

Adjust the trigger time if you use NQ feet. Var name, trigger spell, etc can be whatever you want obviously.
 Quetzalcoatl.Mitosis
Offline
Server: Quetzalcoatl
Game: FFXI
user: xMitosisx
Posts: 317
By Quetzalcoatl.Mitosis 2011-08-13 18:21:10
Link | Quote | Reply
 
Thanks much. I'll try it out in a few =]
Log in to post.