Code:
$pix = PixelSearch(0,590,177,767,0x550043) if IsArray($pix) = True Then EndIf
Code:
HDC hdc;
hdc = GetDC(GetActiveWindow());
int x, y ;
for(x=0; x<177;x++)
{
for(y=590; y<767;y++)
{
COLORREF CC= GetPixel( hdc, x,y );
if(CC== 4455333)
{
cout <<"found!<<endl;
}
}
}
but in c++ take 10 sec to find!
so how do i speed it in C++!!!






