Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. https://autohotkey.com/download/
  2. -> click the big blue download sign and run it.
  3. -> run it
  4. -> go to your desktop and right click : new > AutoHotKeyScript
  5. -> name it whatever you want
  6. -> then right click and click edit script
  7. -> delete everything in the text file and replace it with:
  8.  
  9. #NoEnv
  10. SendMode Input
  11.  
  12. ~F6::Suspend
  13.  
  14. ~End::ExitApp
  15.  
  16. LCtrl & ~LButton::
  17. Loop
  18. If GetKeyState("LButton") {
  19. Sleep,6
  20. moveAmount := (moveAmount = 2) ?6 : 0
  21. mouseXY(moveAmount,4.4)
  22.  
  23. }
  24. else
  25. break
  26.  
  27. Return
  28.  
  29.  
  30.  
  31. mouseXY(x,y)
  32. {
  33. DllCall("mouse_event",int,2,int,x,int,y,uint,0,uint,0)
  34. }
  35.  
  36.  
  37.  
  38. -> then close and then double click on filemlike youre running it. it should have a small green H icon on
  39. your task bar. that means it is running.
  40.  
  41. -> F6 is to toggle off and on.
  42.  
  43. -> it works with AK/M249 and is based off your sensitivity so you MIGHT need to lower the sense.
  44. i havent had practice with it but my experience is that i dont really need to move my mouse too much.
  45. just barely.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement