I'm using ACA, and like, the WHOLE guy is covered, plug in numbers, run script, nothing, doesn't find ONE point.
Edit: :| ACA finds color, doesn't find it in script.
Simba Code:
function FindJudge(var x,y:integer):Boolean;
var
a : Integer;
TPA : TPointArray;
ATPA : T2DPointArray;
MP : TPoint;
tmpCTS,Clicked : Integer;
Box,SearchArea : TBox;
begin
FindNormalRandoms;
SMART_ClearCanvas;
if not LoggedIn then Exit;
Writeln('Starting hunt for judge...');
tmpCTS := GetColorToleranceSpeed;
ColorToleranceSpeed(2);
SetColorSpeed2Modifiers(0.23,0.95);
SearchArea := IntToBox((MSCX - 150),(MSCY - 150),(MSCX + 150),(MSCY+150));
SMART_DrawBoxEx(False,SearchArea,clPurple);
FindColorsSpiralTolerance(MSCX,MSCY,TPA,2768457,MSCX -150,MSCY - 150 ,MSCX+150,MSCY+150,15);
SortTPAFrom(TPA,point(MSCX,MSCY));
ATPA := TPAtoATPAEx(TPA,15,15);
for a := 0 to High(ATPA) do
begin
MP := MiddleTPA(ATPA[a]);
Box := IntToBox((MP.x - 20),(MP.y - 20),(MP.x + 20),(MP.y + 20));
SMART_DrawBoxEx(False,Box,clYellow);
MMouse(MP.x,MP.y,4,4);
if(WaitUpText('udge',5000))then
begin
x := MP.x; y := MP.y;
SMART_ClearCanvas;
Mouse(x,y,0,0,False);
Wait(RandomRange(200,400));
ChooseOption('Compete');
WaitOnText(['Yes','es'],Clickleft,5000);
end;
Break;
ColorToleranceSpeed(tmpCTS);
SetColorSpeed2Modifiers(0.2,0.2);
Writeln('...finished buying');
end;
Wait(500);
end;