1. HotKeyNet key combos

    I think I finally managed to get HKN to work on my setup by salvaging a lot of dead scripts ^^

    Anyway as for the actual keystrokes I have some macro'd buttons which means I'll primarily be using, CTRL + 0-9 rather than just 0-9 but I can't get the script to acknowledge that I'm pressing both buttons at the same time - it does accept 0-9 and space though.

    Can somebody take a look and tell me what's up?

    <Hotkey ScrollLockOn A-Z, 0-9, Ctrl, Shift, Plus, Minus, Space, Numpad1, Numpad2, Numpad3, Numpad0, Numpad9, Decimal except W, A, S, D, C, F, Q, 4, E, 0, 2, T, Z>
    <SendLabel w0, w1, w2, w3, w4>
    <Key %Trigger%>

    <MovementHotkey ScrollLockOn up, down, left, right>
    <SendLabel w0, w1, w2, w3, w4>
    <Key %Trigger%>

  2. When you are not into scripting I recommend to either pay for ISboxer or get Pwnboxer for free.
    Hotkeynet is not userfriendly and I'd only recommend it to players with deep scripting knowledge who want to have their own customised interface.
    ISboxer covers all the features that experienced boxers need. Pwnboxer has not so many features but it's good enough for beginners and starter friendly.
    Edited: February 15, 2022

  3. The syntax is:
    <Hotkey TogglableKeyLikeScrollLock ModifierLikeShift Key>
    So if you want to use ctrl 1 you could write:
    <Hotkey ScrollLockOn Ctrl 1>

    The way you did it is that you sent shift and ctrl as keys not as modifiers, since you included them in the list of keys.

    Here is some code that I think will work but I haven't tried it so could be some mistake:

    <KeyList MyList A-Z, 0-9, Plus, Minus, Space, Numpad1, Numpad2, Numpad3, Numpad0, Numpad9, Decimal except W, A, S, D, C, F, Q, 4, E, 0, 2, T, Z>

    <Hotkey ScrollLockOn MyList; ScrollLockOn Shift MyList; ScrollLockOn Ctrl MyList>
    <SendLabel w0, w1, w2, w3, w4>
    <Key %Trigger%>

  4. This should work:
    <Hotkey ScrollLockOn A-Z, 0-9, Ctrl, Shift, Plus, Minus, Space, Numpad1, Numpad2, Numpad3, Numpad0, Numpad9, Decimal except W, A, S, D, C, F, Q, 4, E, 0, 2, T, Z; ScrollLockOn Ctrl 1, 2, 3, 4, 5, 6, 7, 8, 9>
    <SendLabel w0, w1, w2, w3, w4>
    <Key %Trigger%>

    <MovementHotkey ScrollLockOn up, down, left, right>
    <SendLabel w0, w1, w2, w3, w4>
    <Key %Trigger%>

  5. The syntax is:
    <Hotkey TogglableKeyLikeScrollLock ModifierLikeShift Key>
    So if you want to use ctrl 1 you could write:
    <Hotkey ScrollLockOn Ctrl 1>

    The way you did it is that you sent shift and ctrl as keys not as modifiers, since you included them in the list of keys.

    Here is some code that I think will work but I haven't tried it so could be some mistake:

    <KeyList MyList A-Z, 0-9, Plus, Minus, Space, Numpad1, Numpad2, Numpad3, Numpad0, Numpad9, Decimal except W, A, S, D, C, F, Q, 4, E, 0, 2, T, Z>

    <Hotkey ScrollLockOn MyList; ScrollLockOn Shift MyList; ScrollLockOn Ctrl MyList>
    <SendLabel w0, w1, w2, w3, w4>
    <Key %Trigger%>
    Ah of course! I'm not about to say that it makes sense, but I see your point.

    This works as intended, though of course I forgot to check if I can apply ctrl+shift+{#} but by all means I think that should function as well.

    Thanks for the fix AND the clarification. It's been at least10 years since I did my last bit of coding since I didn't need it for my education nor my job, so it's been a fun and extremely weird trip back into the world of über logical thinking xD

  6. hotkeynet "deep scripting knowledge" lol.

    //-----------------------------------------------------------
    // MOUSE CLICK BROADCAST WITH CTRL!!!
    //-----------------------------------------------------------

    <Hotkey Ctrl LButton>
    <SaveMousePos>
    <SendWinM WoW1>
    <ClickMouse LButton>

    //-----------------------------------------------------------
    // ON / OFF
    //----------------------------------------------------------

    <hotkey F1>
    <sendpc local>
    <ToggleHotkeys>


    //----------------------------------------------
    // KEY BROADCASTING
    //------------------------------------------
    <Hotkey A-Z, 0-9, F1-F12, Oem1-Oem8, except A-Z, F1-F5, Oem4, Oem6>
    <If ActiveWinIs WoW1>
    <SendPC local>
    <SendWinM WoW1>
    <Key %Trigger%>


    //----------------------------------------------------------------
    // Resize window 1
    //----------------------------------------------------------------

    <Hotkey Alt Ctrl 8>
    <Toggle>
    <TargetWin WoW1>
    <SetWinSize 1440 810>
    <SetWinPos 0 0>
    <UpdateWin>
    <Toggle>
    <TargetWin WoW1>
    <SetWinSize 1920 1080>
    <UpdateWin>
    <SetWinPos 0 0>



    //-------------------------------------------------------
    // Round Robin a
    //-------------------------------------------------------

    <Hotkey Oem6>

    <Toggle>
    <SendPC local>
    <SendWinM WoW1>
    <Key %Trigger%>

    <Toggle>
    <SendPC local>
    <SendWinM WoW2>
    <Key %Trigger%>

Posting Permissions

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