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

    Question Hotkeynet flying/underwater spacebar problem. Also Left Alt key question.

    I got an issue and I can't figure it out while boxing in WOW.

    When ever I am underwater or flying the space bar doesn't work. Actually it does work but the characters do not move upwards.
    You just get lifted from the ground slightly.

    When ever I am on normal non flying mounts it works just fine. I can jump with no issues.

    The problem only occurs underwater or when you are on a flying mount in a zone that allows flying.

    I don't know if I am clear on the problem that I am having. I hope I am .

    Also I would like to send some Left Alt + (keys) combo. As it is now when I press the left alt on my keyboard it doesn't get send even though its in the script.

    I would like to send some key combos like alt + Q, alt + E, alt + R, and so on.

    How do I make that work?

    Regards


    I am using the 2 wow script with some minor modifications.
    Code:
    // 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 "D:\Backup\World of Warcraft\WoW-64.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, Oem8, LAlt, 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 Oem8>
    
    <Hotkey ScrollLockOn Oem8 LButton, MButton, RButton, Button4, Button5> 
    
       <SendLabel w1, w2>
          <ClickMouse %TriggerMainKey%>
                    <RestoreMousePos>
    
    <Hotkey ScrollLockOn Button5, Button4>
       <SendLabel w1, w2>
          <ClickMouse %TriggerMainKey%>

    Regards

  2. #2
    Member Ughmahedhurtz's Avatar
    Join Date
    Jul 2007
    Location
    North of The Wall, South of The Line
    Posts
    7169

    Default

    I suspect Space needs to be moved to the movement keys definition, but that's just a guess. It needs the "Hold while pressed" functionality rather than just passing the single keypress like it does with everything else.
    Now playing: WoW (Garona)

  3. #3

    Default

    Quote Originally Posted by Ughmahedhurtz View Post
    I suspect Space needs to be moved to the movement keys definition, but that's just a guess. It needs the "Hold while pressed" functionality rather than just passing the single keypress like it does with everything else.
    I ll try that. I don't use movement keys, I have them disabled, I'll add it. Thanks

    Any info on the LEFT ALT key??

  4. #4

    Default

    I tried this but it doesn't work. Not sure if the code is correct. Can someone check?

    Thanks

    Code:
    // DEFINE MOVEMENT KEYS THAT WILL GET SENT TO BOTH WOW'S.
    // ADD MORE KEYS IF YOU WANT.
    //-----------------------------------------------------------
    <MovementHotkey ScrollLockOn Space>
    <SendLabel w1, w2>
    <Key %Trigger%>
    NVM, I forgot to remove the Space from the combinations. Now it works.

    I still need some help with the ALT + Q/R etc combos that I want to use.

    regards
    Last edited by Rathik : 09-12-2016 at 01:43 PM

  5. #5

    Default

    My guess is that Hotkeynet does not recognize a modifier given in the middle of the definition. I would make separate defitions for modified keys.

    As far as I can remember, modifier keys can be added like this:
    Code:
    <Hotkey LAlt Q, R, E>
       <SendLabel w1, w2>
          <Key %Trigger%>
    This should send Alt+E/Q/R to both windows when pressed. If you just want the command that is sent to be Q, R or E so that the game clients do not receive the modifier with them, you should use <Key %TriggerMainKey%> instead.
    Last edited by Wubsie : 09-12-2016 at 04:25 PM

  6. #6

    Default

    No, I want to send them as ALT+ <key>. I have keybindings like those on my actions bars, i ll test them now, thanks for the help.

    EDIT

    Works great, thanks man
    Last edited by Rathik : 09-12-2016 at 03:48 PM

  7. #7

Posting Rules

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