SCAR Code:
Function FindFurnaceer(var FTile : TPoint) : Boolean;
Begin
Debug('TPA finder');
FindFurnaceTPA;
FFlag(0);
Wait(RandomRange(1000,1500));
Result := SmeltingScreen;
If not Result then
begin
MakeCompass(0);
SetAngle(True);
Debug('Using Tile Location');
Result := TileOnMS(Point(3272, 3186), 10);
if Result Then FTile := Point(3272, 3186);
If Not Result Then
begin
Debug('Using FindObject');
Result := FindObject(FTile, 11666);
end;
If Not Result Then
begin
Debug('Using SRL');
FTile := Point(-1,-1);
Result := OpenFurnace;
end;
end;
end;
SCAR Code:
Function FindFurnaceer(var FTile : TPoint) : Boolean;
Begin
Debug('Using Tile Location');
Result := TileOnMS(Point(3272, 3186), 10);
if Result Then FTile := Point(3272, 3186);
If Not Result Then
begin
Debug('Using FindObject');
Result := FindObject(FTile, 11666);
end;
If Not Result Then
begin
Debug('Using SRL');
FTile := Point(-1,-1);
Result := OpenFurnace;
end;
end;