Advertisement
GauHelldragon

Untitled

Nov 29th, 2015
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #SingleInstance force
  2.  
  3. myLeft = off
  4. myRight = off
  5.  
  6. ^f1::Click Down Right ;Press ctrl-F1 to hold the right mouse button down
  7. ^f2::Click Up Right ;ctrl-F2 to release the right mouse button
  8. ^f3::Click Down Left ;Press ctrl-F3 to hold the left mouse button down
  9. ^f4::Click Up Left ;ctrl-F4 to release the left mouse button
  10.  
  11. ^LButton::
  12. Click Down Left
  13. myLeft = on
  14. exit
  15. ^RButton::
  16. Click Down Right
  17. myRight = on
  18. exit
  19. ~LButton::
  20.  
  21. if ( myLeft = on ) {
  22. myLeft = off
  23. Click Up Left
  24. }
  25. exit
  26. ~RButton::
  27. if ( myRight = on ) {
  28. myRight = off
  29. Click Up Right
  30. }
  31. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement