Hey all,

First off, thanks for this excellent forum
After reading this, I started out with 3 mages (Xxal, Xxil and Xxul ^^). I'm using the PiP feature in keyclone; Xxal is my "main" char most of the times, however, when I switch to Xxil or Xxul, I want it to be my leader char. To accomplish this, I've set up some macros. To shorten this post a bit, here are the macros for a 2 player setup:

On Xxal:

Leader Xxal
Code:
/focus Xxal
/script SetBinding("W", "MOVEFORWARD")
/script SetBinding("A", "TURNLEFT")
/script SetBinding("S", "MOVEBACKWARD")
/script SetBinding("D", "TURNRIGHT")
/script SaveBindings(1)
Leader Xxil
Code:
/focus Xxil
/script SetBinding("W", "MACRO Follow")
/script SetBinding("A", "MACRO Follow")
/script SetBinding("S", "MACRO Follow")
/script SetBinding("D", "MACRO Follow")
/script SaveBindings(1)
On Xxil:

Leader Xxal
Code:
/focus Xxal
/script SetBinding("W", "MACRO Follow")
/script SetBinding("A", "MACRO Follow")
/script SetBinding("S", "MACRO Follow")
/script SetBinding("D", "MACRO Follow")
/script SaveBindings(1)
Leader Xxil
Code:
/focus Xxil
/script SetBinding("W", "MOVEFORWARD")
/script SetBinding("A", "TURNLEFT")
/script SetBinding("S", "MOVEBACKWARD")
/script SetBinding("D", "TURNRIGHT")
/script SaveBindings(1)
And on both:

Follow
Code:
/target focus
/follow
/cleartarget
Bind macros with the same name to the same key; for example, "Leader Xxal" on F10 for both chars, and "Leader Xxil" on F11 for both chars. You don't have to bind "Follow".

What this will do:
- Whenever you press F10, Xxal can use WASD to move around, and WASD will make Xxil follow Xxal
- Whenever you press F11, Xxil can use WASD to move around, and WASD will make Xxal follow Xxil

Now make a bunch of macros like:
Code:
/cast [target=focustarget,harm] Fireball;
It'll fire 3 fireballs to your main characters target.

I'm loving this for gather quest; I just gather all I need on Xxal, press F11, press my PiP key for Xxil, and then use Xxil as my leader and gather what I need.

Enjoy!