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

    Exclamation Difficulty using HotkYeNet, 2 WoW Accounts, 1 PC

    I'm just trying to run my main account and my recruit a friend account at the moment, but I can't stand all this command line stuff. I've tried messing with it from the custom template, but I just can't get it to work properly.
    I'm using build 210
    I use 2 separate WoW program folders on 2 different hardrives on the same PC
    I use 2 monitors
    I just want whatever I press/click on the main WoW screen to be mirrored on the 2nd WoW screen; I use WASD to move, I use 1-= on the action bar and i use keybindings with different letters and modifiers like Ctrl, Alt, & Shift.

    Here is what the script currently looks like:

    Code:
    //-----------------------------------------------------------
    // DEFINE MAIL LABELS FOR SENDING KEY STROKES.
    //-----------------------------------------------------------
    <Label w1 Local SendWinM WoW1>
    <Label w2 Local SendWinM WoW2>
    
    
    //-----------------------------------------------------------
    // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
    // SENT TO ALL WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
    //-----------------------------------------------------------
    <KeyList MyList A-Z, 0-9, Enter, Tab, Oem4, Space, Comma, Oem6>
    
    
    <Hotkey MyList; Shift MyList; Alt MyList; Ctrl MyList>
           <SendLabel w1, w2>
           <Key %Trigger%>
    
    
    <MovementHotkey up, down, left, right>
               <SendLabel w1, w2>
                <Key %Trigger%>
    
    
    <hotkey pause>
        <sendpc local>
        <ToggleHotkeys>
    
    
    ///-----------------------------------------------------------
    // 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 Oem3 LButton, MButton, RButton>  
       <SendLabel w1, w2>
           <ClickMouse %TriggerMainKey%>
               
    //-----------------------------------------------------------
    // SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
    //-----------------------------------------------------------
    <Command LaunchAndRename>
       <SendPC local>
          <Run "C:\program files (x86)\World of Warcraft\WoW-64.exe">
          <Run "E:\World of Warcraft\WoW-64.exe">
    
    
    //-----------------------------------------------------------
    // HOTKEY TO LAUNCH AND RENAME YOUR WOW WINDOWS while 5 boxing
    // Please configure the path correctly
    //-----------------------------------------------------------
    <Hotkey Alt Ctrl L>
    <LaunchAndRename Local "C:\program files (x86)\World of Warcraft\WoW-64.exe" WoW1>
    <LaunchAndRename Local "E:\World of Warcraft\WoW-64.exe" WoW2>
    Last edited by Khatovar : 12-28-2012 at 12:16 AM

  2. #2

    Default

    I'd suggest starting with the guide in my sig. Beyond that, you haven't given me anything to troubleshoot. What errors are you getting from HotKeyNet?
    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 _

  3. #3

    Default

    pressing a button like W to move forward and nothing happens

  4. #4

    Default

    Quote Originally Posted by Ivikdterak View Post
    pressing a button like W to move forward and nothing happens
    You do not have wasd defined as movement keys, find the line in your posted script that says movementhotkey up, down, left, right....and change those to w, a, s, d. You will have to add "except w, a, s, d" to the end of your keylist. Just paste that after where it says oem6 in your keylist without a comma, just a space will do.
    Then of course make sure those are the keybinds in wow. You may want to add space, as a movement hotkey as well or you will not be able to fly or swim. That should get you moving.

    Good luck

  5. #5

    Default

    Ok so the current errors are ones like these:

    From this pc: <SendWinM WoW1><KeyDown Space><SendWinM WoW2><KeyDown Space>
    <SendWinM WoW1> failed: Could not find window "WoW1"
    <KeyDown Space> failed: no window is targeted
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <KeyDown Space> failed: no window is targeted


    From this pc: <SendWinM WoW1><KeyUp Space><SendWinM WoW2><KeyUp Space>
    <SendWinM WoW1> failed: Could not find window "WoW1"
    <KeyUp Space> failed: no window is targeted
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <KeyUp Space> failed: no window is targeted


    From this pc: <SendWinM WoW1><KeyDown S><SendWinM WoW2><KeyDown S>
    <SendWinM WoW1> failed: Could not find window "WoW1"
    <KeyDown S> failed: no window is targeted
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <KeyDown S> failed: no window is targeted


    From this pc: <SendWinM WoW1><KeyUp S><SendWinM WoW2><KeyUp S>
    <SendWinM WoW1> failed: Could not find window "WoW1"
    <KeyUp S> failed: no window is targeted
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <KeyUp S> failed: no window is targeted
    ------------------------------------------------------------------

    Current Script looks like this:

    Code:
    //-----------------------------------------------------------
    // DEFINE MAIL LABELS FOR SENDING KEY STROKES.
    //-----------------------------------------------------------
    <Label w1 Local SendWinM WoW1>
    <Label w2 Local SendWinM WoW2>
    
    
    //-----------------------------------------------------------
    // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
    // SENT TO ALL WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
    //-----------------------------------------------------------
    <KeyList MyList A-Z, 0-9, Enter, Tab, Oem4, Space, Comma, Oem6. except w, a, s, d, space>
    
    
    <Hotkey MyList; Shift MyList; Alt MyList; Ctrl MyList>
      	 <SendLabel w1, w2>
       	<Key %Trigger%>
    
    
    <MovementHotkey w, s, a, d, space>
           	<SendLabel w1, w2>
            	<Key %Trigger%>
    
    
    <hotkey pause>
    	<sendpc local>
    	<ToggleHotkeys>
    
    
    ///-----------------------------------------------------------
    // 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 Oem3 LButton, MButton, RButton>  
       <SendLabel w1, w2>
           <ClickMouse %TriggerMainKey%>
           	
    //-----------------------------------------------------------
    // SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
    //-----------------------------------------------------------
    <Command LaunchAndRename>
       <SendPC local>
          <Run "C:\program files (x86)\World of Warcraft\WoW-64.exe">
          <Run "E:\World of Warcraft\WoW-64.exe">
    
    
    //-----------------------------------------------------------
    // HOTKEY TO LAUNCH AND RENAME YOUR WOW WINDOWS while 5 boxing
    // Please configure the path correctly
    //-----------------------------------------------------------
    <Hotkey Alt Ctrl L>
    <LaunchAndRename Local "C:\program files (x86)\World of Warcraft\WoW-64.exe" WoW1>
    <LaunchAndRename Local "E:\World of Warcraft\WoW-64.exe" WoW2>

    When I do Ctrl/Alt/L it loads the 2 WoW's twice.
    Last edited by Khatovar : 12-28-2012 at 12:17 AM

  6. #6

    Default

    Quote Originally Posted by Ivikdterak View Post
    Ok so the current errors are ones like these:

    From this pc: <SendWinM WoW1><KeyDown Space><SendWinM WoW2><KeyDown Space>
    <SendWinM WoW1> failed: Could not find window "WoW1"
    <KeyDown Space> failed: no window is targeted
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <KeyDown Space> failed: no window is targeted


    From this pc: <SendWinM WoW1><KeyUp Space><SendWinM WoW2><KeyUp Space>
    <SendWinM WoW1> failed: Could not find window "WoW1"
    <KeyUp Space> failed: no window is targeted
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <KeyUp Space> failed: no window is targeted


    From this pc: <SendWinM WoW1><KeyDown S><SendWinM WoW2><KeyDown S>
    <SendWinM WoW1> failed: Could not find window "WoW1"
    <KeyDown S> failed: no window is targeted
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <KeyDown S> failed: no window is targeted


    From this pc: <SendWinM WoW1><KeyUp S><SendWinM WoW2><KeyUp S>
    <SendWinM WoW1> failed: Could not find window "WoW1"
    <KeyUp S> failed: no window is targeted
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <KeyUp S> failed: no window is targeted
    ------------------------------------------------------------------

    Current Script looks like this:

    Code:
    //-----------------------------------------------------------
    // DEFINE MAIL LABELS FOR SENDING KEY STROKES.
    //-----------------------------------------------------------
    <Label w1 Local SendWinM WoW1>
    <Label w2 Local SendWinM WoW2>
    
    
    //-----------------------------------------------------------
    // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
    // SENT TO ALL WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
    //-----------------------------------------------------------
    <KeyList MyList A-Z, 0-9, Enter, Tab, Oem4, Space, Comma, Oem6. except w, a, s, d, space>
    
    
    <Hotkey MyList; Shift MyList; Alt MyList; Ctrl MyList>
      	 <SendLabel w1, w2>
       	<Key %Trigger%>
    
    
    <MovementHotkey w, s, a, d, space>
           	<SendLabel w1, w2>
            	<Key %Trigger%>
    
    
    <hotkey pause>
    	<sendpc local>
    	<ToggleHotkeys>
    
    
    ///-----------------------------------------------------------
    // 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 Oem3 LButton, MButton, RButton>  
       <SendLabel w1, w2>
           <ClickMouse %TriggerMainKey%>
           	
    //-----------------------------------------------------------
    // SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
    //-----------------------------------------------------------
    <Command LaunchAndRename>
       <SendPC local>
          <Run "C:\program files (x86)\World of Warcraft\WoW-64.exe">
          <Run "E:\World of Warcraft\WoW-64.exe">
    
    
    //-----------------------------------------------------------
    // HOTKEY TO LAUNCH AND RENAME YOUR WOW WINDOWS while 5 boxing
    // Please configure the path correctly
    //-----------------------------------------------------------
    <Hotkey Alt Ctrl L>
    <LaunchAndRename Local "C:\program files (x86)\World of Warcraft\WoW-64.exe" WoW1>
    <LaunchAndRename Local "E:\World of Warcraft\WoW-64.exe" WoW2>

    When I do Ctrl/Alt/L it loads the 2 WoW's twice.
    Please place code within tags - either [code] or [quote]

    It launches twice because that's what your LaunchAndRename is telling it to do. Your script says to launch from both locations and then Run from both locations.

    You don't have a command in there anywhere to rename the windows, thus all the "failed: Could not find window".

    I would not suggest using W, A, S, D as defined movement keys. As I explain in the Configuring a HotKetNet Starter Script Guide, you do not want to multibox by trying to make slaves move independently. They should be managed by using a follow macro or assist and interact with target. The only exception is I would add Space and X to the MovementHotkey list because you will need it to pass so your slaves can jump, fly and swim.

    The reason W wasn't doing anything is not because it wasn't defined as a movement key, it is because you didn't define window names so HotKeyNet had nowhere to send it.

    At this point, I'd start that whole script over. Go get a new copy of the Two-on-one HotKeyNet Starter Script.

    Change only the following -

    DELETE These 3 sections

    Code:
    //-----------------------------------------------------------
     // PRESS CTRL R TO RENAME WOW'S IF YOU LAUNCH THEM MANUALLY 
     //-----------------------------------------------------------
     <Hotkey ScrollLockOn Ctrl R>
         <SendPC local>
             <RenameWin "World of Warcraft" WoW1> 
             <RenameWin "World of Warcraft" WoW2> 
    
     //-----------------------------------------------------------
     // SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
     //-----------------------------------------------------------
     <Command LaunchAndRename>
        <SendPC %1%> 
           <Run "c:\Program Files\World of Warcraft\WoW.exe">
             <RenameTargetWin %2%>
    
     //-----------------------------------------------------------
     // HOTKEY TO LAUNCH AND RENAME BOTH WOW'S.
     //-----------------------------------------------------------
     <Hotkey ScrollLockOn Alt Ctrl L>
         <LaunchAndRename Local WoW1>
         <LaunchAndRename Local WoW2>
    REPLACE them with

    Code:
    //----------------------------------------------------------
    // 	WoW LAUNCH AND RENAME SUBROUTINE
    //----------------------------------------------------------
    <Command LaunchAndRename>
    <SendPC %1%>
    <Run %2%>
    <RenameTargetWin %3%>
    <RemoveWinFrame>
    
    
    //----------------------------------------------------------
    // 	WoW LAUNCH HOTKEY 
    //----------------------------------------------------------
    //*
    <Hotkey Ctrl Alt L>
    	<LaunchAndRename Local "C:\program files (x86)\World of Warcraft\Wow.exe" WoW1>
    		<LaunchAndRename Local "E:\World of Warcraft\Wow.exe" WoW2>
    Everything else should stay exactly as it is. Load the script, reload HotKeyNet and you should be good to go. I'd also still suggest reading the HotKeyNet guide I linked above and looking at things like adding the Pause broadcasting hotkey and a Resize command from it.
    Last edited by Khatovar : 12-28-2012 at 12:18 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 _

  7. #7

    Default

    Ok I've finally had some time to sit down and mess with it I'm getting ready to go to a New Year's party, but it's still got some kinks, I'll have to check out the shared mouse click thing again later.
    I'm wondering about overcoming certain barriers though like accepting quests and looting mobs for quest items, etc.

    Here's the current code

    Code:
    //================================================================
    // SAMPLE SCRIPT FOR TWO WOW'S ON ONE PC 
    //
    // Instructions: Copy this entire script (all the blue writing
    // on gray background including comments). Save it in a file. 
    // Load it into HotkeyNet.
    //
    // Toggle the scroll lock key to turn hotkeys off and on. (You 
    // can change this if you want, just like you can change 
    // everything else with HotkeyNet.) 
    //
    // Requires HotkeyNet build 147 or higher.
    // 
    // For more info, go to www.hotkeynet.com 
    //================================================================
    
    
    //----------------------------------------------------------
    //     WoW LAUNCH AND RENAME SUBROUTINE
    //----------------------------------------------------------
    <Command LaunchAndRename>
    <SendPC %1%>
    <Run %2%>
    <RenameTargetWin %3%>
    <RemoveWinFrame>
    
    
    
    
    //----------------------------------------------------------
    //     WoW LAUNCH HOTKEY 
    //----------------------------------------------------------
    //*
    <Hotkey Ctrl Alt L>
        <LaunchAndRename Local "C:\program files (x86)\World of Warcraft\Wow-64.exe" WoW1>
            <LaunchAndRename Local "E:\World of Warcraft\Wow-64.exe" WoW2>
    
    
    //-----------------------------------------------------------
    // DEFINE MAIL LABELS FOR SENDING KEY STROKES 
    //-----------------------------------------------------------
    <Label w1 Local SendWinM WoW1>
    <Label w2 Local SendWinM WoW2>
    
    
    //-----------------------------------------------------------
    // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
    // SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT. 
    //-----------------------------------------------------------
    <KeyList MyList 0-9, A-Z, Space, CapsLock, LAlt, Alt, LCtrl, LShift, Numpad0-Numpad9, Divide, Multiply, NumpadMinus, Tab, NumpadPlus, Backspace, Insert, Home, PgUp, PgDn, Delete, F1-F12, Esc, Oem1-Oem7, except OEM2, w, a, s, d>
     
    <Hotkey ScrollLockOn MyList; ScrollLockOn Shift MyList; ScrollLockOn Alt MyList; ScrollLockOn Ctrl MyList>
    <SendLabel w1, w2>
    <Key %Trigger%>
    
    
    //-----------------------------------------------------------
    // DEFINE MOVEMENT KEYS THAT WILL GET SENT TO BOTH WOW'S.
    // ADD MORE KEYS IF YOU WANT. 
    //-----------------------------------------------------------
    <MovementHotkey ScrollLockOn up, down, left, right, space, X>
    <SendLabel w1, w2>
    <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 Alt>
    
    
    <Hotkey ScrollLockOn Alt LButton, MButton, RButton, Button4, Button5>
       <SendLabel w1, w2> 
          <ClickMouse %TriggerMainKey%>
    
    
    //————–-----------
    // TOGGLE HKN MUTE
    //—————-----------
    <hotkey Pause>
    <sendpc local>
    <ToggleHotkeys>
    Also, what are the other Oem keys? And would using the Windows key work for the mouse click toggle? HotKeyNet calls it just plain Alt instead of LAlt or RAlt, and currently I have the windows key disabled from opening the start menu.

  8. #8

    Default

    Accepting quests you will want Jamba. Link in the sig for the guide to that. Looting you will need to set up assist + interact with target. Information on that is also in the Jamba guide under the Questing section and in the Multiboxing Volume 1 guide.

    Here is a list of keynames, including OEM keys.

    http://www.hotkeynet.com/ref/keynames.html

    If you have remapped the Windows key, you will have to undo that or map it to something else HotKeyNet can use as a toggle. If it is currently reporting Alt, it will only work as a modifier. I currently use the Windows Keys to swap windows.
    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
  •