Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. ray := 1
  2. timer := 0
  3. mist := 1
  4.  
  5. ~*numpad5:: ; Make the RButton key into a hotkey
  6.  
  7. if(mist=1)
  8. {
  9. sendinput {[}
  10. SetTimer, Reset, -16000
  11. timer := 1
  12. mist := 0
  13. return
  14. }
  15. ray++
  16. if(ray=8)
  17. ray:= 2
  18.  
  19. if(ray=2)
  20. sendinput {]}
  21. if(ray=3)
  22. sendinput {;}
  23. if(ray=4)
  24. sendinput {'}
  25. if(ray=5)
  26. sendinput {/}
  27. if(ray=6)
  28. return
  29.  
  30. ~*numpad4 UP::
  31. click
  32. return
  33.  
  34. Reset:
  35. mist := 1
  36. timer := 0
  37. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement