0
the below code is an AHK script that i have been using. It works very well. Essentially what it does is it pulls the mouse down for me, while im holding left control and the left mouse button.
The issue that i am having, is that i need the cursor to stay completely in the middle. The game that i play, makes it so that when you shoot (hold left mouse button) the gun will "sway" left and right. Sad to say, i have failed miserably at every attempt to incorporate this into my script below.
Can anyone please help?
#NoEnv
SendMode Input
~F6::Suspend
~End::ExitApp
~F5::Reload
LCtrl & ~LButton::
Loop
If GetKeyState("LButton", "LCtrl") {
Sleep, 6
moveAmount := (moveAmount = 2) ? 1 : 0
mouseXY(moveAmount,7.5)
}
else
break
Return
mouseXY(x,y)
{
DllCall("mouse_event",int,1,int,x,int,y,uint,0,uint,0)
}