So here is my script...
$Color = 0x00000000
$MousePos = MouseGetPos()
$ColorVariation = 20
$Left = $MousePos[0]-[50]
$Top = $MousePos[1]+[50]
$Right = $MousePos[0]+[50]
$Bottom = $MousePos[1]-[50]
Func Click()
If WinActive ( "[Conquer2.0]", "" ) then
$ShadowCoords = PixelSearch ($Left, $Top, $Right, $Bottom, $Color, $ColorVariation, 2)
If @error=1 Then
MsgBox(16, "Aimbot ERROR", "No black pixel found within 100 pixels of the mouse")
Else
MouseClick("Right", $ShadowCoords[0], $ShadowCoords[1])
EndIf
EndIf
EndFunc
It has a problem with the part with:
$Left = $MousePos[0]-[50]
$Top = $MousePos[1]+[50]
$Right = $MousePos[0]+[50]
$Bottom = $MousePos[1]-[50]
I get a syntax error for every line...