Sure, here is the procedure with the error shown:
SCAR Code:
{*******************************************************************************
Function FindFishMole(:boolean);
By: Nava2
Description: Looks for FishMole in River when called.
*******************************************************************************}
function FindFishMole :boolean;
begin
if (FindColorsSpiralTolerance(x, y, FishPoints, FishColor, MSX1, MSY1, MSX2, MSY2, 10)) then // <- Error
begin
result:= true;
FX:= x;
FY:= y;
end else
begin
result:= false;
if (InvFull) then
result:= false;
end;
end;
Yeah, any help is appreciated.
Nava2