Simba Code:
procedure WalkToBoat_Radial;
begin
if not (LoggedIn) then
Exit;
if not FindNormalRandoms then
begin
if not RunEnergy(25) then
DoRest;
MakeCompass('n');
Writeln('Walking to boat via Radial');
Wait(Random(1000));
begin
RadialWalkTolerance(6451052, 318, 345, 72, -1, 0,25);
Wait(RandomRange(800, 1200));
RadialWalkTolerance(6451052, 322, 338, 72, -1, 0,25);
Wait(RandomRange(800, 1200));
RadialWalkTolerance(6451052, 315, 333, 72, -1, 0,25);
Wait(RandomRange(800, 1200));
RadialWalkTolerance(6451052, 282, 303, 72, -1, 0,25);
Wait(RandomRange(800, 1200));
RadialWalkTolerance(1795803, 273, 294, 70, -1, 0,15);
Wait(RandomRange(800, 1200));
end;
end;
end;