AutoExec And PLD

Language: JP EN DE FR
New Items
2023-11-19
users online
Forum » FFXI » Jobs » Paladin » AutoExec and PLD
AutoExec and PLD
 Asura.Ekotren
Offline
Server: Asura
Game: FFXI
user: Awsome
Posts: 49
By Asura.Ekotren 2012-07-20 23:03:57
Link | Quote | Reply
 
I'm new to autoexec, basically I currently use /console exec dmg.txt; for a -dmg macro on magical and physical. However I've heard of autoexec yet never used it. I was trying to figure out how to use it, alas online windower forums were no help that I could find.

I'm trying to have my -dmg gear to go on while i'm stunned, terrored, or in an otherwise senario where my shield would do no good.

Anyone that could help would be much appreciated. Thank you
 Quetzalcoatl.Coder
Offline
Server: Quetzalcoatl
Game: FFXI
user: coder
Posts: 42
By Quetzalcoatl.Coder 2012-07-20 23:31:30
Link | Quote | Reply
 
make an ingame macro to swap to your -DT gear set and press it when you get stunned, terrored, or in a scenario where your shield is useless
 Phoenix.Felos
Offline
Server: Phoenix
Game: FFXI
user: Felos
Posts: 26
By Phoenix.Felos 2012-07-20 23:43:25
Link | Quote | Reply
 
if you can get / using spellcast could add a line reading as follows:

<if buffactive="Cover">
<equip when="engaged">
<head>Gallant Coronet +1</head>
<body>Valor Surcoat</body>
</equip>
</if>

This example is for cover, but just change the buff to Terror|Stun and it would have the same effect, after the buff wears most scripts would then put your normal shield based tanking gear back on.
 Quetzalcoatl.Coder
Offline
Server: Quetzalcoatl
Game: FFXI
user: coder
Posts: 42
By Quetzalcoatl.Coder 2012-07-20 23:47:12
Link | Quote | Reply
 
Except you have to take an action to trigger spellcast to reparse the rules, autoexec will trigger when you gain a buff and don't do anything else.

This is what he wants:
http://pastebin.com/eVpjcxwH

I would personally hate to do that, at some point it feels like I'm not even playing the game anymore.
 Asura.Ekotren
Offline
Server: Asura
Game: FFXI
user: Awsome
Posts: 49
By Asura.Ekotren 2012-07-21 02:12:37
Link | Quote | Reply
 
thanks coder, but i'm new to autoexec, where do i plug the following in?

1.
<register event="gainbuff_Terror" silent="true">wait 1;input //sc set DT</register>

2.
<register event="gainbuff_Stun" silent="true">wait 1;input //sc set DT</register>

3.
<register event="losebuff_Terror" silent="true">wait 1;input //sc set TP</register>

4.
<register event="losebuff_Stun" silent="true">wait 1;input //sc set TP</register>
 Quetzalcoatl.Coder
Offline
Server: Quetzalcoatl
Game: FFXI
user: coder
Posts: 42
By Quetzalcoatl.Coder 2012-07-21 02:35:08
Link | Quote | Reply
 
This would go into your windower folder: Windower\plugins\AutoExec\AutoExec.xml
 Asura.Izilder
Offline
Server: Asura
Game: FFXI
user: Izildur
Posts: 670
By Asura.Izilder 2012-07-21 03:49:48
Link | Quote | Reply
 
this is what i use on auto exec for the rare occ i do stuff like Legion Pld/Nin, which swap to DT gears when i dont have shadows up - it should give you some ideas of what to do


<register event="losebuff_Copy_Image*" silent="true">input /ma "Fire Spirit"</register>
<register event="gainbuff_Copy_Image*" silent="true">input /ma "Fire Spirit"</register>



<if mode="and" subjob="NIN" buffactive="Copy Image*">
<equip when="aftercast|engaged" set="TP" />
</if>
<elseif mode="and" subjob="NIN" notbuffactive="Copy Image*">
<equip when="aftercast|engaged" set="idle" group="PDT" />
</elseif>
Log in to post.