Dude, this one compiles now:
SCAR Code:
program EnteringBoat;
{.include srl/srl.scar}
{.include srl/srl/extended/xautotalk.scar}
{.include srl/srl/extended/xantiban.scar}
const
BoatCol1 = 0000000;
procedure BoatFind;
begin
If(FindColorTolerance(x,y, BoatCol1, MSX1, MSY1, MSX2, MSY2,10))then
begin
MMouse(x,y, 0, 0);
If(isUpText('ross'))Then
Mouse(x,y, 0, 0,true)
end;
end;
procedure Antiban2;
begin
RotateEvery(15000);
MakeCompass('N');
end;
begin
SetUpSRL;
BoatFind;
Antiban2;
end.
And for finding objects, you can use SRL's FindObj -function.