
Originally Posted by
Zyt3x
Yes, I tried the game, but it is possible to search for more than 1 color

Do something like
SCAR Code:
cArr := [0, 1, 2, 3] // replace 0, 1, 2 and 3 with the colors.
for I := 0 to 3 do
if FindColor(x, y, cArr[i], xs, ys, xe, ye) then
ClickMouse(X, Y, True);
but there are 100+ colors in the game, impossible to find em all
EDIT:
i was listed nr one in the game but they have updated the game so the colours of the freezbees are generated randomly, before the update this script worked 100%
SCAR Code:
program New;
var
x,y:integer;
begin
repeat
If findcolor(x,y,8684774,13,45,584,381) or findcolor(x,y,8709764,13,45,584,381) or findcolor(x,y,14651871,13,45,584,381) or findcolor(x,y,15395450,13,45,584,381) or findcolor(x,y,9428959,13,45,584,381) or findcolor(x,y,14847116,13,45,584,381)then
clickmouse(x,y,true);
wait(5);
until(false)
end.