View Full Version : [HotKeyNet] New to multiboxing, can't get WASD to work
Grishrat
04-20-2012, 04:19 AM
Hey all. I just recently started trying to multibox and a friend recommended I try HotKeyNet After some trial and error and help from Freddie over on their official forums, I got all of the attack keys to work, but I can't get movement through WASD to work. It moves my main character about a centimeter but then forces me to stop. I'm using this for The Lord of the Rings Online, by the way. Here is the script I am using, could someone tell me what the heck I did wrong?
I apparently cannot post my script here as it is too long, so here it is on Pastebin. http://pastebin.com/QUY6ZVqC
Khatovar
04-20-2012, 05:01 AM
You can't define them as movement keys because LotRO requires that a window is active in order to receive commands. That means it is bringing every window to the foreground in rapid succession every time you press w, a, s, d, dropping the main window to the background and thus terminating the command to move.
You need to have your slaves on follow and only move via w,a,s,d on your main, which means those keys need to be excluded from your broadcast list. So delete all this
//-----------------------------------------------------------
// DEFINE MOVEMENT KEYS THAT WILL GET SENT TO WINDOWS
// ADD MORE KEYS IF YOU WANT
//-----------------------------------------------------------
<Hotkey ScrollLockOn w, a, s, d>
<if MainWin is W1>
<SendLabel W3, W2, W1>
<KeyDown %Trigger%>
<KeyUp %Trigger%>
<else if MainWin is W2>
<SendLabel W1, W3, W2>
<KeyDown %Trigger%>
<KeyUp %Trigger%>
<else if MainWin is W3>
<SendLabel W2, W1, W3>
<KeyDown %Trigger%>
<Wait 0>
<KeyUp %Trigger%>
<endif>
If you need to have slave movement via keys, it will require segregating the keyup and keydown commands. I haven't played LotRO in a long time, but I was able to use something like this -
<Hotkey shift Q>
<SendLabel w2>
<Keydown Q>
<SendLabel w1>
<Keydown Q>
<HotkeyUp shift Q>
<SendLabel w2>
<Keyup Q>
<SendLabel w1>
<Keyup Q>
vBulletin® v4.2.2, Copyright ©2000-2025, Jelsoft Enterprises Ltd.