
Originally Posted by
Tint
/hotbar copy Carpenter 1 current 1

Originally Posted by
BRVV
/hotbar copy Blacksmith 1 Weaver 1"
Your macros assume that the correct layout is on a specific class. Such an assumption is inconvenient. You will likely make a change on "whatever class I'm on when I think of a better way to arrange my bars", and then have to redo the change on the class that the macro expects to base all the other classes on. More convenient would be to copy from current to everything else:
Code:
/mlock
/hotbar copy current 1 crp 1
/hotbar copy current 2 crp 2
/hotbar copy current 3 crp 3
/hotbar copy current 1 bsm 1
/hotbar copy current 2 bsm 2
/hotbar copy current 3 bsm 3
/hotbar copy current 1 arm 1
/hotbar copy current 2 arm 2
/hotbar copy current 3 arm 3
/hotbar copy current 1 gsm 1
/hotbar copy current 2 gsm 2
/hotbar copy current 3 gsm 3
Code:
/mlock
/hotbar copy current 1 ltw 1
/hotbar copy current 2 ltw 2
/hotbar copy current 3 ltw 3
/hotbar copy current 1 wvr 1
/hotbar copy current 2 wvr 2
/hotbar copy current 3 wvr 3
/hotbar copy current 1 alc 1
/hotbar copy current 2 alc 2
/hotbar copy current 3 alc 3
/hotbar copy current 1 cul 1
/hotbar copy current 2 cul 2
/hotbar copy current 3 cul 3
That way you can make your changes on any class without having to worry about whether you're on the one that the macro expects you to be on.