Advertisement
Guest User

Untitled

a guest
May 29th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.39 KB | None | 0 0
  1. ///////////// PUBG WALK TOGGLE AHK //////////////
  2.  
  3. y::
  4. KeyDown := !KeyDown
  5. If KeyDown
  6.     SendInput {p down}
  7. Else
  8.     SendInput {p up}
  9. Return
  10. z::
  11. KeyDown := !KeyDown
  12. If KeyDown
  13.     SendInput {p down}
  14. Else
  15.     SendInput {p up}
  16. Return
  17.  
  18. ////////////////////////////////////////////////
  19.  
  20. CapsLock::
  21. KeyDown := !KeyDown
  22. If KeyDown
  23.     SendInput {CapsLock down}
  24. Else
  25.     SendInput {CapsLock up}
  26. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement