Armorsmith Archive
Thread: Armor Macro
Fun,
Take your armor and put it into all of the quick bar slots that you need. The macro should be in slot 1.
Then type the rest of this:
/ui action toolbarSlot 02;
/ui action toolbarSlot 03;
/ui action toolbarSlot 04;
/ui action toolbarSlot 05;
/ui action toolbarSlot 06;
/ui action toolbarSlot 07;
/ui action toolbarSlot 08;
/ui action toolbarSlot 09;
/ui action toolbarSlot 10;
/ui action toolbarSlot 11;
/ui action toolbarSlot 12;
/ui action toolbarSlot 13;
/ui action toolbarSlot 14;
That's assuming you have 13 pieces of armor.
If you have fewer adjust the numbers. That'll activate that quickbar slot and put your armor on for ya.
Good luck!
B
Funman,
The way I did it was to use a toolbar that currently I didn't have much use for, and drag my clothes and armor to different slots for that bar. You can then code a macro to activate whatever slots you need for whichever combo you want:
/ui toolBar01
/ui toolbarSlot08
/ui toolbarSlot09
/ui toolbarSlot10
in that example (I believe that's the correct syntax), although you may want to search on activating weapons using a macro, I've switched to toolbar 1, and activated slots 8,9 and 10.
I then bound that macro to my numpad + key to put the armor on
Playing with those combo's, you can equip, then unequip your armor, and/or clothes.
hope that helped
/ui action toolbarPane03 -thats the 4th pane of toolbars
/ui action toolbarSlot00
/ui action ToolbarSlot01
to equip without changing panes just finish off with
/ui action toolbarPane00
You probably want one for your clothes too unless you prefer to walk around naked
What I did was put all the pieces in the shift Bar then made a marco using the /ui action toolbarSlotXX command so it would equip it all. Oh so you know what number to put after toolbarSlot here is a guide:
F1=0 SHIFT+F1=12
F2=1 SHIFT+F2=13
F3=2 SHIFT+F3=14
F4=3 SHIFT+F4=15
F5=4 SHIFT+F5=16
F6=5 SHIFT+F6=17
F7=6 SHIFT+F7=18
F8=7 SHIFT+F8=19
F9=8 SHIFT+F9=20
F10=9 SHIFT+F10=21
F11=10 SHIFT+F11=22
F12=11 SHIFT+F12+23
Oh i just found a thread on this :
http://forums.station.sony.com/swg/board/message?board.id=armorsmith&message.id=7069
funny they wait for the weekend to fix the game, my time to play is in the morning and they were down from 7:00 -9:40 am est. so that game me 20 minutes before i had to leave for work.
Anyway, go to hotkey bank #6
Start in slot 1 (actually number 00) and place your armor piece by piece from top left to right, then place all the clothing you normally wear in the slots after that, when you reach the last slot go to bank 2 column 1 and keep going.
Now see how many items you have total, that is the number of /ui action toolbarslots's you need...
Now the macro, lets assume you have 9 pieces of armor and 7 pieces of normal clothing you wear so 16 items, that means you have toolbar slots 00 through 15 filled with the stuff.
here is the macro that will take you from any bank you start it in to bank 1 (you can also have 6 different macros with each one taking you back to the bank in which it's called from....
But generally speaking most people sit on toolbar pane 1(00) most of the time.. Anyway, here is the one to equp/unequip the armor and go back to toolbarpane 1(00).
/ui action toolbarPane05;/ui action toolbarSlot00;/ui action toolbarSlot01;/ui action toolbarSlot02;/ui action toolbarSlot03;/ui action toolbarSlot04;/ui action toolbarSlot05;/ui action toolbarSlot06;/ui action toolbarSlot07;/ui action toolbarSlot08;/ui action toolbarSlot09;/ui action toolbarSlot10;/ui action toolbarSlot11;/ui action toolbarSlot12;/ui action toolbarSlot13;/ui action toolbarSlot14;/ui action toolbarSlot15;/ui action toolbarPane00(or whatever pane you want it to go back to when finished)
And that's it. By hitting every slot clothing and armor it will effectively invert all their status at once, so it will take off all the armor and put on all the clothing or vice versa, nice little single macro to do both equipping and unequipping.