[ autoit ]
Func cubemouse($x2,$y2,$Range,$speed) While $Range > 10 MouseMove($x2-$Range , $y2-$Range ,$speed) $pos = MouseGetPos() $poscurY = $pos[1] while $poscurY < $y2 + $Range $poscurY += 20 _MouseClickPlus("", "right", $x2-$Range, $poscurY, 1) ;~ MouseClick("right",$x2-$Range ,$poscurY,1,$speed) WEnd MouseMove($x2-$Range , $y2+$Range ,$speed) $pos = MouseGetPos() $poscurX = $pos[0] while $poscurX < $x2 + $Range $poscurX += 20 _MouseClickPlus("", "right", $poscurX, $y2+$Range, 1) ;~ MouseClick("right", $poscurX, $y2+$Range,1,$speed) WEnd MouseMove($x2+$Range , $y2+$Range ,$speed) while $poscurY > $y2 - $Range $poscurY -= 20 _MouseClickPlus("", "right", $x2+$Range, $poscurY, 1) ;~ MouseClick("right",$x2+$Range, $poscurY, 1,$speed) WEnd MouseMove($x2+$Range , $y2-$Range ,$speed) $pos = MouseGetPos() $poscurX = $pos[0] while $poscurX > $x2 - $Range + 20 $poscurX -= 20 _MouseClickPlus("", "right", $poscurX, $y2-$Range, 1) ;~ MouseClick("right",$poscurX ,$y2-$Range,1,$speed) WEnd WEnd EndFunc
trying to do this for fun...
what this does is just clicks mmouse in a "Square" format from middle start point.
i dont get how can i make mouseclickplus work in this whole thing

with mouseclick() its obvious and easy , but using mouseclickplus() its different because the mouse isnt moving with it actualy.. and there im stuck ... how can i make mouseclickplus work as it is with mouseclick()