Hi,
I'm getting a type mismatch here...
SCAR Code:function ReturnFSpotFS(x, y: integer): boolean;
var Testx, Testy, Boundx, Boundy: integer;
begin
if FindSymbol(Testx, Testy, 'fish') then
begin
Boundx := MMCX;
Boundy := MMCY;
if not Boundx - Testx < 21 or Boundy - Testy < 21 then //this line
begin
x := Testx;
y := Testy;
Result := True;
Exit;
end else Exit;
end;
end;
Please help!
Thanks,
Cut em2 it






Reply With Quote





