Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
3,256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #NoEnv
  2. SendMode Input
  3.  
  4. /* ;description
  5. this is a script for the ak-47/m249. if it wont work
  6. try changing your mouse sensetivety in game. by m2p4
  7. */
  8.  
  9. ~F6::Suspend
  10.  
  11. ~End::ExitApp
  12.  
  13. LCtrl & ~LButton::
  14. Loop
  15. If GetKeyState("LButton") {
  16. Sleep,6
  17. moveAmount := (moveAmount = 2) ?6 : 0
  18. mouseXY(moveAmount,4.4)
  19.  
  20. }
  21. else
  22. break
  23.  
  24. Return
  25.  
  26.  
  27.  
  28. mouseXY(x,y)
  29. {
  30. DllCall("mouse_event",int,2,int,x,int,y,uint,0,uint,0)
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement