Advertisement
Hexine

WallClimbing_Tech

Jun 21st, 2016
482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;WallClimbing_Tech by Hex
  2. ;Press F12 to toggle
  3. ;End key to close the application
  4.  
  5.  
  6. ;Change F12 by whatever key you want here to toggle on or off the script.
  7. ;I have myself bind it to mouse 5 : XButton2::
  8. F12:: Hotkey, *~$Space, Toggle
  9.  
  10. ;End here close completly the script. Again reasign it like you want
  11. End::ExitApp
  12.  
  13. *~$Space::
  14. Sleep 10
  15. Loop
  16. {
  17. GetKeyState, SpaceState, Space, P
  18. If SpaceState = U
  19. break
  20. Sleep 100
  21. Send, {Blind}{Space}
  22. }
  23. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement