ha i get to explain the params
SCAR Code:
function findcolors(color1,color2,color3: integer): boolean;
var x,y: integer;
begin
begin
if findcolor(x,y,color1) or
findcolor(x,y,color2) or
findcolor(x,y,color3) then
result:=true;
end else;
if (not(findcolor(x,y,color1)) and
(not(findcolor(x,y,color2)) and
(not(findcolor(x,y,color3)) then
result:=false;
end;
see how in the parameters i labeled color1,color2,and color3 and then later in the script i put them in as well. if this function was filled out
findcolors(13412,235434,34223) then later in the function where i put color1 it would make that 13412. same with color 2 and 3. i also put integer after them because they are basically variables so you have to define them as integers since they are numbers. then ofcouse boolean makes the function result true or false.