I've been looking to migrate from keyclone to Hotkeynet, as keyclone is a bit of a nightmare with regards to mouse broadcasting for AOE spells.

Reading up on the HKN forums and here i have started to piece together a script and was looking for some help from the experts here on getting proper configuration.

Brief overview on my setup: (2 pc's 3 screens 5 accounts)

pc 1 (192.168.0.20)
main pc
1x24" screen 1920x1200
1 instance of wow
run from c:\wow-single

pc2 (192.168.0.25)
slave pc
2x22" screen rotated through 90' 1050x1680
(2 copies of wow on each screen each running 1050x840)
run from (symbolic links)
4 instances of wow
c:\wow2
c:\wow3
c:\wow4
c:\wow5

if someone could have a look at the script below and possibly point me in the right direction i would be most greatful

thanks





//-----------------------------------------------------------
// SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
//-----------------------------------------------------------
<Command LaunchAndRename>
<SendPC local>
<Run "c:\Wow-single\WoW.exe">
// what do i put in here for the locations of the slave wow folders?


//-----------------------------------------------------------
// Initial window positions
//-----------------------------------------------------------
<Command SetF1Pos>
<TargetWin WoW1>
<SetWinPos 0 0>
<SetWinSize 1920 1200>
<SetForegroundWin>
<UpdateWin>
<TargetWin WoW2>
<SetWinPos 0 0>
<SetWinSize 1050 840>
<TargetWin WoW3>
<SetWinPos 0 841>
<SetWinSize 1050 840>
<TargetWin WoW4>
<SetWinPos 1051 0>
<SetWinSize 1050 840>
<TargetWin WoW5>
<SetWinPos 1051 841>
<SetWinSize 1050 840>

//-----------------------------------------------------------
// DEFINE A MAIL LABEL FOR EACH WOW
//-----------------------------------------------------------
<Label w1 Local SendWinM WoW1>
<Label w2 192.168.0.25 SendWinM WoW2>
<Label w3 192.168.0.25 SendWinM WoW3>
<Label w4 192.168.0.25 SendWinM WoW4>
<Label w5 192.168.0.25 SendWinM WoW5>

//-----------------------------------------------------------
// HOTKEY TO LAUNCH AND RENAME THE WOW WINDOWS.
//-----------------------------------------------------------
<Hotkey ScrollLockOn Alt Ctrl L>
<LaunchAndRename Local WoW1>
<RemoveWinFrame>
<sendpc local>
<wait 1000>
<text YourUsername>
<Key tab>a
<text YourPassword>
<wait 100>
<Key Enter>
<LaunchAndRename 192.168.0.25 WoW2>
<RemoveWinFrame>
<sendpc 192.168.0.25>
<wait 1000>
<text YourUsername>
<Key tab>a
<text YourPassword>
<wait 100>
<Key Enter>
<LaunchAndRename 192.168.0.25 WoW3>
<RemoveWinFrame>
<sendpc 192.168.0.25>
<wait 1000>
<text YourUsername>
<Key tab>a
<text YourPassword>
<wait 100>
<Key Enter>
<LaunchAndRename 192.168.0.25 WoW4>
<RemoveWinFrame>
<sendpc 192.168.0.25>
<wait 1000>
<text YourUsername>
<Key tab>a
<text YourPassword>
<wait 100>
<Key Enter>
<LaunchAndRename 192.168.0.25 WoW5>
<RemoveWinFrame>
<sendpc 192.168.0.25>
<wait 1000>
<text YourUsername>
<Key tab>a
<text YourPassword>
<wait 100>
<Key Enter>

//-----------------------------------------------------------
// DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
// SENT TO ALL FOUR WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
//-----------------------------------------------------------
<Hotkey ScrollLockOn A-Z, 0-9, F1-F12>
<SendLabel w1, w2, w3, w4, w5>
<Key %Trigger%>

//-----------------------------------------------------------
// DEFINE MOVEMENT KEYS THAT WILL GET SENT TO ALL FOUR WOW'S.
// ADD MORE KEYS IF YOU WANT.
//-----------------------------------------------------------
<MovementHotkey ScrollLockOn up, down, left, right>
<SendLabel w1, w2, w3, w4, w5>
<Key %Trigger%>

//-----------------------------------------------------------
// BROADCAST MOUSE CLICKS. HOLD DOWN OEM3 (ON U.S. KEYBOARDS,
// THAT'S THE SQUIGGLE KEY IN UPPPER LEFT CORNER) WHEN YOU
// WANT TO BROADCAST.
//-----------------------------------------------------------
<UseKeyAsModifier Oem3>
<Hotkey ScrollLockOn Oem3 LButton, MButton, RButton, Button4, Button5>
<SendLabel w1, w2, w3, w4, w5>
<ClickMouse %TriggerMainKey%>

edits: i really should spell check these before posting..