Hey, thanks for these forums, it's been unbelievably helpful reading through many of these posts.

I'm brand new to dual boxing, but am trying to run multiple instances of Warhammer Online on my computer. I bought Keyclone and frustrated myself to no end before realizing that it doesn't work with this game. Lesson learned I guess.

I know almost everyone multiboxes with WoW, but is it possible to use software to do it with Warhammer? I heard somewhere that AHK works, so I downloaded that, got a simple WoW script, and changed it to work for Warhammer. It seems to recognize the instances I have running when I open it, (i get the message window asking which window is my main and clone) but it still won't broadcast keystrokes between the instances. Is this just a lost cause, or has anyone managed to play multiple WAR instances on one box?

Here's the script I've been using in AHK (there are some comments from the creator throughout you more tech-savvy can probably ignore):

Code:
;Tell user what is about to happen 
SplashTextOn, 325, , Preparing to find your Main and Clone windows of WoW. 
Sleep, 2000 
SplasHtextoff 

;Grab unique window ID's 
WinGet, wowid, List, Warhammer: Age of Reckoning`, Copyright 2001-2009 Electronic Arts`, Inc. 

; Minimize All WOW windows 
WinMinimize, ahk_id %wowid1% 
WinMinimize, ahk_id %wowid2% 

;Determine Main and Clone Windows 
WinActivate, ahk_id %wowid1% 

MsgBox, 4,, Is this your WOW Main window? (press Yes or No) 
IfMsgBox Yes 
   idMain = %wowid1% 
else 
   idMain = %wowid2% 

If idMain = %wowid1% 
{ 
   idClone = %wowid2% 
} else { 
   idClone = %wowid1% 
} 

;Activate All WOW windows 
WinActivate, ahk_id %idMain% 
WinActivate, ahk_id %idClone% 


;*** Special Functions *** 


; ******************* 
; *** Numpad 0-6  *** 
; ******************* 
#IfWinActive, Warhammer: Age of Reckoning`, Copyright 2001-2009 Electronic Arts`, Inc. 
   ~Numpad0:: 
   ControlSend,,{Numpad0 down}{Numpad0 up},  ahk_id %idClone% 
return 

#IfWinActive, Warhammer: Age of Reckoning`, Copyright 2001-2009 Electronic Arts`, Inc. 
   ~Numpad1:: 
   ControlSend,,{Numpad1 down}{Numpad1 up},  ahk_id %idClone% 
return 

#IfWinActive, Warhammer: Age of Reckoning`, Copyright 2001-2009 Electronic Arts`, Inc. 
   ~Numpad2:: 
   ControlSend,,{Numpad2 down}{Numpad2 up},  ahk_id %idClone% 
return 

#IfWinActive, Warhammer: Age of Reckoning`, Copyright 2001-2009 Electronic Arts`, Inc. 
   ~Numpad3:: 
   ControlSend,,{Numpad3 down}{Numpad3 up},  ahk_id %idClone% 
return 

#IfWinActive, Warhammer: Age of Reckoning`, Copyright 2001-2009 Electronic Arts`, Inc. 
   ~Numpad4:: 
   ControlSend,,{Numpad4 down}{Numpad4 up},  ahk_id %idClone% 
return 

#IfWinActive, Warhammer: Age of Reckoning`, Copyright 2001-2009 Electronic Arts`, Inc. 
   ~Numpad5:: 
   ControlSend,,{Numpad5 down}{Numpad5 up},  ahk_id %idClone% 
return 

#IfWinActive, Warhammer: Age of Reckoning`, Copyright 2001-2009 Electronic Arts`, Inc. 
   ~Numpad6:: 
   ControlSend,,{Numpad6 down}{Numpad6 up},  ahk_id %idClone% 
return

#IfWinActive, Warhammer: Age of Reckoning`, Copyright 2001-2009 Electronic Arts`, Inc. 
   ~Numpad7:: 
   ControlSend,,{Numpad7 down}{Numpad7 up},  ahk_id %idClone% 
return

#IfWinActive, Warhammer: Age of Reckoning`, Copyright 2001-2009 Electronic Arts`, Inc. 
   ~Numpad8:: 
   ControlSend,,{Numpad8 down}{Numpad8 up},  ahk_id %idClone% 
return

#IfWinActive, Warhammer: Age of Reckoning`, Copyright 2001-2009 Electronic Arts`, Inc. 
   ~Numpad9:: 
   ControlSend,,{Numpad9 down}{Numpad9 up},  ahk_id %idClone% 
return

#IfWinActive, Warhammer: Age of Reckoning`, Copyright 2001-2009 Electronic Arts`, Inc. 
   ~NumpadDot:: 
   ControlSend,,{NumpadDot down}{NumpadDot up},  ahk_id %idClone% 
return

#IfWinActive, Warhammer: Age of Reckoning`, Copyright 2001-2009 Electronic Arts`, Inc. 
   ~Numpadadd:: 
   ControlSend,,{Numpadadd down}{Numpadadd up},  ahk_id %idClone% 
return