Standard MouseClick & MouseMove functions have got hardcoded Sleep(10) even if you use minimal value for speed parameter (analysed from Autoit's 3.1.0 sources)
so if you need really fast mouse clicking/moving then use my MouseClickFast & MouseMoveFast
X,Y coordinates are in absolute (screen) meaning.
Func _MouseClickFast($x, $y)
$x = $x*65535/@DesktopWidth
$y = $y*65535/@DesktopHeight
_WinAPI_Mouse_Event(BitOR($MOUSEEVENTF_ABSOLUTE, $MOUSEEVENTF_MOVE), $x, $y)
_Win