Results 1 to 3 of 3
  1. #1
    SDTL| Henson's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Location
    F:\Earth\North America\United States\California\Hesperia\
    Posts
    38
    Reputation
    10
    Thanks
    3
    My Mood
    Cheeky

    Question AutoHotKey hotkeys

    I was trying to make a rapid shooter and bunny hop script, but when I looked up the hotkey for LMB and Space, it had told me to put {LButton} and {Space}. Now when I try to run, it says hotkey invalid. Here is my script.

    ---Edit:

    I solved that problem, now it is just this part. The {Space} in GetKeyState... Here is the whole second half of the script.

    https://pastebin.com/9gP0e8RU

    ---Edit:

    I found another problem. If Scroll Lock is disabled, you can't use these normally. I'm sure I can easily fix by just making it a pause script, but, I like having it the way I had it. If anybody can help me with that, it would be greatly appreciated.
    Last edited by SDTL| Henson; 06-05-2016 at 02:22 AM.

  2. #2
    MikeRohsoft's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Los Santos
    Posts
    797
    Reputation
    593
    Thanks
    26,314
    Quote Originally Posted by SDTL| Henson View Post
    I was trying to make a rapid shooter and bunny hop script, but when I looked up the hotkey for LMB and Space, it had told me to put {LButton} and {Space}. Now when I try to run, it says hotkey invalid. Here is my script.

    ---Edit:

    I solved that problem, now it is just this part. The {Space} in GetKeyState... Here is the whole second half of the script.

    https://pastebin.com/9gP0e8RU

    ---Edit:

    I found another problem. If Scroll Lock is disabled, you can't use these normally. I'm sure I can easily fix by just making it a pause script, but, I like having it the way I had it. If anybody can help me with that, it would be greatly appreciated.
    I can't runyour Script, but maybe this helps:
    Code:
    $SPACE::
      While GetKeyState("SPACE","P")
      {
        Send {SPACE}
        Sleep 10
      }
    return

  3. The Following User Says Thank You to MikeRohsoft For This Useful Post:

    SDTL| Henson (06-06-2016)

  4. #3
    SDTL| Henson's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Location
    F:\Earth\North America\United States\California\Hesperia\
    Posts
    38
    Reputation
    10
    Thanks
    3
    My Mood
    Cheeky
    Works, thanks!
    Have I not triggered you yet?


Similar Threads

  1. vb hotkeys
    By cjg333 in forum General Game Hacking
    Replies: 7
    Last Post: 07-23-2008, 01:08 PM
  2. Hotkeys in C++
    By Dave84311 in forum C++/C Programming
    Replies: 7
    Last Post: 09-07-2007, 07:13 AM
  3. My hack release hotkey v1
    By purenoob134 in forum WarRock - International Hacks
    Replies: 23
    Last Post: 07-13-2007, 07:56 PM
  4. Hotkeys for a VB trainer
    By scooby107 in forum Visual Basic Programming
    Replies: 10
    Last Post: 07-03-2007, 12:43 PM
  5. [Tutorial] How To Mack HotKeys On VB
    By TheRedEye in forum WarRock - International Hacks
    Replies: 32
    Last Post: 06-23-2007, 10:24 PM