Advertisement
scar17off

AHK - Sven Co-op Long jump BHop

Mar 14th, 2023
1,300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn  ; Enable warnings to assist with detecting common errors.
  3. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  5.  
  6. *Space::
  7.     Loop
  8.     {
  9.         GetKeyState, state, Space, P
  10.         if state = U
  11.         break
  12.         Send, {LControl down}
  13.         Sleep, 50
  14.         Send, {Space}
  15.         Sleep, 50
  16.         Send, {LControl up}
  17.         Sleep, 50
  18.     }
  19.     Send, {LControl up}
  20. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement