Hello, I am a new multiboxer and I am currently trying to switch from my fixed leader macro setup to FTL. I found all the tutorials and threads here very useful, but I have run into a problem now which I somehow fail to solve.

Basically, my follow macro fails. The key setup of HotKeyNet works, I can see the transmitted keys in the log output:
Code:
From this pc: <SendFocusWin><Key PgUp><SendWinM WoW1><Key LCtrl LAlt PgUp><SendWinM WoW2><Key LCtrl LAlt PgUp><SendWinM WoW3><Key LCtrl LAlt PgUp><SendWinM WoW5><Key LCtrl LAlt PgUp>
    <SendFocusWin> completed
    <Key PgUp> completed
    <SendWinM WoW1> completed: Window found. Target set to 0x1A0146 "WoW1"
    <Key LCtrl LAlt PgUp> completed
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <Key LCtrl LAlt PgUp> failed: no window is targeted
    <SendWinM WoW3> failed: Could not find window "WoW3"
    <Key LCtrl LAlt PgUp> failed: no window is targeted
    <SendWinM WoW5> completed: Window found. Target set to 0x70274 "WoW5"
    <Key LCtrl LAlt PgUp> completed
I was running only three sessions, so these errors are to be ignored. Basically, the key presses work. LCtrl LAlt is transmitted correctly, as I was in window 4 when I pressed the hotkey.

I have the following macro on each character bound to PgUp:
Code:
/stopmacro [nomod]
/target 
[mod:ctrl,nomod:alt,nomod:shift,target=Beregond]
[mod:alt,nomod:ctrl,nomod:shift,target=Lorayn]
[mod:shift,nomod:ctrl,nomod:alt,target=Gnrak]
[mod:ctrl,mod:alt,nomod:shift,target=Sindra]
[mod:ctrl,mod:shift,nomod:alt,target=Dindrae]
/follow
The different conditions for /target are usually in one big line, I just formatted it here to be a little more readable.

Well, now my problem...
For example, I am in the window for the character named Sindra, and I press PgUp. Sindra does nothing, works. :P Beregond starts to follow me, works as well. However, Dindrae somehow is following Beregond, and not Sindra.

My HotKeyNet keymap for reference:
Code:
//================================================================
// FIVE WOW'S ON ONE PC
//
//
// Toggle the scroll lock key to turn hotkeys off and on.
//
//================================================================

//-----------------------------------------------------------
// SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
//-----------------------------------------------------------
<Command LaunchAndRename>
   <SendPC Local>
   <Run %1%>   
   <RenameWin "World of Warcraft" %2%>
//   <RemoveWinFrame>
   <SetAffinity %3%>

//-----------------------------------------------------------
// PRESS CTRL F11 TO RENAME WOW'S IF YOU LAUNCH THEM MANUALLY.
//-----------------------------------------------------------
<Hotkey ScrollLockOn Ctrl F11>    
      <LaunchAndRename "d:\world of warcraft\maximizer.exe" WoW1 all>
      <LaunchAndRename "d:\wow box 1\maximizer.exe" WoW2 all>
      <LaunchAndRename "d:\wow box 2\maximizer.exe" WoW3 all>
      <LaunchAndRename "d:\wow box 3\maximizer.exe" WoW4 all>
      <LaunchAndRename "d:\wow box 4\maximizer.exe" WoW5 all>

//-----------------------------------------------------------
// DEFINE MAIL LABELS FOR SENDING KEY STROKES.
//-----------------------------------------------------------
<Label w1 Local SendWinM WoW1>
<Label w2 Local SendWinM WoW2>
<Label w3 Local SendWinM WoW3>
<Label w4 Local SendWinM WoW4>
<Label w5 Local SendWinM WoW5>

//-----------------------------------------------------------
// FTL setup
//-----------------------------------------------------------
// %1% : Master Key
// %2% : Slave Key
// %3% : Modifier
// %4% : SlavesToSend
<Template SendMasterAndSlave>
         <SendFocusWin>
                  <Key %1%>
         <Sendlabel %4%>
                  <Key %3% %2%>
<EndTemplate>

// %1% : master key
// %2% : slave key
// %3% : modifier
// %4% : Active window
// %5% : Slave Windows
<Template SendLeaderless>
        <If ActiveWinIs %4%>
            <ApplyTemplate SendMasterAndSlave "%1%" "%2%" "%3%" "%5%">
<EndTemplate>

// %1% : master-key
// %2% : slave-key
<Template FTL>
          <Hotkey %1%>     
                   <ApplyTemplate SendLeaderless "%1%" "%2%" "LCtrl" WoW1 "w2,w3,w4,w5">
                   <ApplyTemplate SendLeaderless "%1%" "%2%" "LAlt" WoW2 "w1,w3,w4,w5">
                   <ApplyTemplate SendLeaderless "%1%" "%2%" "LShift" WoW3 "w1,w2,w4,w5">
                   <ApplyTemplate SendLeaderless "%1%" "%2%" "LCtrl LAlt" WoW4 "w1,w2,w3,w5">
                   <ApplyTemplate SendLeaderless "%1%" "%2%" "LCtrl LShift" WoW5 "w1,w2,w3,w4">          
<EndTemplate>
//-----------------------------------------------------------
// MAPPED KEYS
//-----------------------------------------------------------
<ApplyTemplate FTL "PgUp" "PgUp">
Well, if someone might help me here, I think I am stuck. Basically, it appears to work. But somehow, not as intended. :P

Help?