Bio Engineer Archive
Thread: Macro
Pretty much correct, with the exception that the command is:
/ui action toolbarSlot##
where ## is between 00 (top left hotkey) and 23 (bottom right hotkey)
Just find an empty toolbar panel and put each piece of armor in a slot starting at the top left, then write the macro like this:
/ui action toolbarSlot00;
/ui action toolbarSlot01;
/ui action toolbarSlot02;
...
/ui action toolbarSlotXX;
So, XX would be the corresponding hotkey for the last piece of armor in the sequence. Hope that helps and isn't too confusing.
I have my combat macro's in my 2nd toolbar pane. My armor pieces are in toolbar pane #6. The game considers the first toolbar pane to be #0 and the 6th to be #5.
First line of macro is:
/ui action toolbarPane05 (to switch to 6th pane).
Armor is in (top) F1, F2, F3, F4, F5, F6, F7, F8 and F9 slots. So... I add these lines to my macro...
/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;
Last line is:
/ui action toolbarPane01 (to switch back to Pane #2, where combat macro's are).
Used to be able to have many more commands in there, then we can have now.. Was able to unequip armor and equip clothes, or vice versa. Now I have one macro for clothes.. F10, F11, F12; and one for armors.. F1, F2, F3, F4, F5, F6, F7, F8 and F9.
Both macro's start in 2nd toolbar pane, and take me back to the 2nd pane... )
Clothing macro looks like this:
/ui action toolbarPane05;
/ui action toolbarSlot09;
/ui action toolbarSlot10;
/ui action toolbarSlot11;
/ui acton toolbarPane01
Basically press one, to unequip what you're wearing, then press the other to equip whatever. Works good, except your momentarily naked...
On The Cutting Edge