Close
Showing results 1 to 2 of 2
  1. #1

    Default New to multiboxing, can't get WASD to work

    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

  2. #2

    Default

    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

    Code:
        //-----------------------------------------------------------
        // 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 -

    Code:
    <Hotkey shift Q>
    	<SendLabel w2>
    		<Keydown Q>
    	<SendLabel w1>
    		<Keydown Q>
    <HotkeyUp shift Q>
    	<SendLabel w2>
    		<Keyup Q>
    	<SendLabel w1>
    		<Keyup Q>
    Last edited by Khatovar : 04-20-2012 at 05:23 AM
    Blog : Herding Khats
    Team : Kina - Çroaker - Messkit - Lìfetaker - Wìdowmaker
    Newbie Guides : Multiboxing Vol. 1 - Multiboxing Vol. 2 - HotKeyNet - Jamba
    The Almighty Lax made a liar out of me, apparently I DO get prizes for it.
    *Commences Wielding the Banhammer like there's piñatas up in here and I'm Lady Thor*

    _ Forum search letting you down? Use the custom Google search _

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •