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

    Default Unable to cast spells on main account

    Hello everyone. I am a complete newbie to multiboxing and decided to use HotKeyNet to try it out since it is free and seemed like it would be fairly easy to set up. Unfortunately I can't seem to get the program to work correctly. While I have HotKeys enabled my keystrokes are being sent to the secondary WoW account but not the primary one, so I have the main account up and my character just stares at the target while the secondary account's character casts spells at the target from the background. How do I get this program to work so that both accounts cast at the same time?

    I'm currently using the following script for multiboxing 2 accounts on the same computer:

    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 
    //================================================================
                                          
                                          //-----------------------------------------------------------
      // 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>
            
                                            //-----------------------------------------------------------
      // 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. 
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q, E>
    <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>
    <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 Oem3>
    
    <Hotkey ScrollLockOn Oem3 LButton, MButton, RButton, Button4, Button5>
       <SendLabel w1, w2> 
          <ClickMouse %TriggerMainKey%>
    Last edited by MiRai : 08-01-2016 at 04:57 PM Reason: [CODE] Tags

  2. #2

    Default

    Try this:

    Code:
    //-----------------------------------------------------------
    // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
    // SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn A-Z, 0-9, Numpad0-Numpad9, Tab, Esc, LShift, Space, Button4, Plus, Minus, Button4, F1-F12 except W, A, S, D, E, Q; ScrollLockOn Shift A-Z; ScrollLockOn Shift 0-9>
    <SendLabel w1, w2>
    <Key %Trigger%>
    Place that where this is:

    Code:
    //-----------------------------------------------------------
    // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
    // SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT. 
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q, E>
    <SendLabel w1, w2>
    <Key %Trigger%>
    And then work the code down from where that one is to where you like it. Be sure to save a copy of the first code after each edit you make to test it out. That way you know where your safe spot is and what went wrong.

    Also does HKN have any errors that pop up?
    Last edited by MiRai : 08-01-2016 at 04:57 PM Reason: Formatting

Posting Rules

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