Advertisement
Guest User

touch cursor scipt

a guest
Mar 21st, 2013
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #If GetKeyState("Space", "P")
  2. $h::
  3. Send {LEFT}
  4. sendSpace := false
  5. return
  6. $j::
  7. Send {DOWN}
  8. sendSpace := false
  9. return
  10. $k::
  11. Send {UP}
  12. sendSpace := false
  13. return
  14. $l::
  15. Send {RIGHT}
  16. sendSpace := false
  17. return
  18. #If
  19.  
  20. $Space::
  21. sendSpace := true
  22. return
  23.  
  24. $Space Up::
  25. if (sendSpace)
  26.     SendInput {Space}
  27. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement