Hey i would like to ask u that is here any autohotheys working now ? Im using something like this and it doesnt work or im so stupid. Can u help me ?

#NoEnv
SendMode Input

~Q::Suspend
~End::ExitApp

LCtrl & ~LButton::
Loop
If GetKeyState("LButton", "LCtrl") {
Sleep, 1
moveAmount := (moveAmount = 2) ? 3 : 0
mouseXY(moveAmount,4)

}
else
break

Return



mouseXY(x,y)
{
DllCall("mouse_event",int,1,int,x,int,y,uint,0,uin t,0)
}