Teras Kasi Archive
Thread: Help with dress/undress armor maco..
here is what you do. Go down to an unused toolbar pane and put your armor in slots 0-4 .
In the example we'll say that this is toolbar with the number 4 by it.
To make the macro work from the first toolbar pane you would use the following macro.
/ui action toolbarPane03;
/ui action toolbarSlot00;
/ui action toolbarSlot01;
/ui action toolbarSlot02;
/ui action toolbarSlot03;
/ui action toolbarPane00;
Keep in mind that all the numbers above are zero relative.
/ui action toolbarPane03; ( Moves to the 4th hotbar )
/ui action toolbarSlot00; ( equips the item in position 1 of the hotbar )
/ui action toolbarSlot01; ( equipe the item in position 2 of the hotbar )
/ui action toolbarPane00; ( moves back to the first hotbar setup )
that should cover it. hope the explanation was clear enough
if you place your armor in the 6th toolbar on hotkeys F1 - whatever, your macro should look something like as follows:
/ui action toolbarPane05;
/ui action toolbarSlot00;
/ui action toolbarSlot01;
/ui action toolbarSlot02;
....
and so on. then to switch back to the toolbar pane you most use, follow it up with a:
/ui action toolbarPaneXX; where XX is 00, 01, 02... etc.