Advertisement
Guest User

Rocket League annoying jump

a guest
Aug 14th, 2017
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Hi Rizz&Jizz! Press F2 to start jumping, and F3 to stop.
  2. ; You can change the delay below, but I think 2 seconds is good.
  3.  
  4. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  5. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  6. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  7. #SingleInstance force
  8.  
  9. ; How often to jump, in milliseconds
  10. delay := 2000
  11.  
  12. on := true
  13.  
  14. *F2::
  15.     on := true
  16.     while on
  17.     {
  18.         click right
  19.         sleep, delay
  20.     }
  21. return
  22.  
  23. *F3::
  24.     on := false
  25. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement