
Originally Posted by
Francisco
I'm about to download this... but this time around I really wanna have "bigger" macros, so I can fit more gear swaps in for stuff like Chakra...
Is there a guide somewhere on how to set these up, or can someone just explain it to me? >.>
Theres a thread somewhere but heres the short version:
Open wordpad and start a new file
Type what you want to do as:
For example:
Code:
input /ja "Provoke" <t>;
or
Code:
input /equip head "Spelunker's Hat";
The only thing that doesn't work are waits, use pause [seconds]; instead, as such:
Then save into the scripts subfolder of the windower folder as whatever you want it to be, say tpgear.txt
Then in FFXI make the macro say /console exec "[filename]", like this:
Code:
/console exec "tpgear.txt"
Then you're set!
An example of a gear swap would be this:
Code:
input /equip head "Chs. Burgeonet +1";
input /equip hands "Chs. Gauntlets +1";
input /equip neck "Spike Necklace";
input /equip ring1 "Rajas Ring";
input /equip ring2 "Flame Ring";
input /equip waist "Warwolf Belt";
input /equip body "Hauberk";
input /equip feet "Hct. Leggings";
input /equip legs "Ryl.Kgt. Breeches";
input /equip ear1 "Abyssal Earring";
input /equip ear2 "Brutal Earring";
input /echo WS Equip on;
and because I'm a silly DRK heres another one
Code:
input /equip ring2 "Flame Ring";
input /equip legs "Abyss Flanchard";
input /equip feet "Abyss Sollerets";
input /equip hands "Crimson Fng. Gnt.";
input /equip body "Chaos Cuirass";
input /equip head "Chs. Burgeonet +1";
input /equip ear1 "Abyssal Earring";
input /equip neck "Dark Torque";
input /echo Casting gear on;
or here was a macro I set up for animated weapon fighting
Code:
input /ja "Souleater" <me>;
pause 1;
input /ja "Last Resort" <me>;
pause 1;
input /ws "Spiral Hell" <t>;
pause 3;
input /equip main "Company Sword";
pause 1;
input /equip sub "Seiryu's Sword";
input /item "Icarus Wing" <me>;
input /equip ear1 "Assault Earring";
input /equip head "Optical Hat";
input /equip waist "Life Belt";
input /equip ring1 "Woodsman Ring";