Advertisement
jblack145

scrap

Nov 2nd, 2019
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #NoEnv
  2. SendMode Input
  3. SetWorkingDir, % A_ScriptDir
  4. #SingleInstance, Force
  5.  
  6. Numpad8::
  7. toggle:=1
  8. while (toggle)
  9. {
  10. sleep,10
  11. Send, {r down}
  12. sleep,5
  13. Send, {r up}
  14. sleep 500
  15. Send, {e down}
  16. sleep,5
  17. Send, {e up}
  18. sleep 500
  19.  
  20. }
  21. Return
  22.  
  23. Numpad9:: toggle:=!toggle
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement