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

    Question New to multi boxing not sure if this is an issue or me missing something.

    So I followed this guide: https://www.youtube.com/watch?v=Wyxk4w2robg
    I got everything set up but when I hit my scrol lock I cant use W/S/A/D or anything on my keyboard. I was able to use my mouse to move and when i tried to test out the macros to attack it worked, sorta, it only attacked on the "slave" account.

    Not sure what I'm doing wrong as I've gone over the video a few more times.

  2. #2
    Multiboxologist MiRai's Avatar
    Join Date
    Apr 2009
    Location
    Winter Is Coming
    Posts
    6815

    Default

    I don't think anyone is going to be able to tell you what you're doing wrong without seeing your HKN script.
    Do not send me a PM if what you want to talk about isn't absolutely private.
    Ask your questions on the forum where others can also benefit from the information.

    Author of the almost unknown and heavily neglected blog: Multiboxology

  3. #3

    Default

    It's happening to me too, here is my script

    // Requires HotkeyNet build 147 or higher.
    //
    // For more info, go to link
    //================================================== ==============

    //-----------------------------------------------------------
    // 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 "D:\Diablo 3\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, Numpad0-Numpad9, Tab, Esc, LShift, Space, Plus, Minus, F1-F12 except W, A, S, D; ScrollLockOn Shift A-Z; ScrollLockOn Shift 0-9>
    <SendLabel w1, w2>
    <Key %Trigger%>

    //-----------------------------------------------------------
    // DEFINE MOVEMENT KEYS THAT WILL GET SENT TO BOTH WOW'S.
    // ADD MORE KEYS IF YOU WANT.
    //-----------------------------------------------------------
    <MovementHotkey ScrollLockOn W, A, S, D>
    <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 Oem5>

    <Hotkey ScrollLockOn Oem5 LButton, MButton, RButton, Button4, Button5>
    <SendLabel w1, w2>
    <ClickMouse %TriggerMainKey%>
    <RestoreMousePos>

  4. #4

    Default

    Generally with HKN, you dont want to send your movement keys to your slaves. You either want a key macro'd that gets sent to the slaves to follow your main toon. Or use the addon Jamba to have the slaves automatically follow the master. The only movement key that I send to all my toons is the Jump key.

    Also, for attacking, you need to set up an assist macro so when you hit your attack keys it also sends the key for the assist macro to all slaves. Here is a snippet of my script for reference. I run 5 toons and I can switch between which toon is the lead on the fly, thats why I have the If statements. Which ever window is active it sends the assist key to all the other wows. So if w1 is active it sends the key, ] (OEM4 to HKN), to the other 4 wow's. If w2 active it sends shift+] to the other wows.

    <Template Assist>
    <SendLabel %2% %3% %4% %5%>
    <key %1%>
    <EndTemplate>

    <Hotkey ScrollLockOn 2-7, a, z, q>
    <If ActiveWinIs WoW1>
    <ApplyTemplate Assist Oem4 w2, w3, w4, w5>
    <SendLabel w1, w2, w3, w4, w5>
    <Key %Trigger%>
    <Else If ActiveWinIs WoW2>
    <ApplyTemplate Assist "shift Oem4" w1, w3, w4, w5>
    <SendLabel w1, w2, w3, w4, w5>
    <Key %Trigger%>
    <Else If ActiveWinIs WoW3>
    <ApplyTemplate Assist "ctrl Oem4" w1, w2, w4, w5>
    <SendLabel w1, w2, w3, w4, w5>
    <Key %Trigger%>
    <Else If ActiveWinIs WoW4>
    <ApplyTemplate Assist "alt Oem4" w1, w2, w3, w5>
    <SendLabel w1, w2, w3, w4, w5>
    <Key %Trigger%>
    <Else If ActiveWinIs WoW5>
    <ApplyTemplate Assist "ctrl alt Oem4" w1, w2, w3, w4>
    <SendLabel w1, w2, w3, w4, w5>
    <Key %Trigger%>

Posting Rules

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