Simba Code:
Function RadialWalkYew: Integer; //Credit to BobboHobbo for Tut and failsafe idea
Var X, Y: Integer;
Begin
FindNormalRandoms;
If RadialRoadWalk(RoadColor, 340, 315, 55, 1, 1) Then
Begin
Writeln('Walking to yew!');
Result:=1;
Exit;
End Else
Writeln('Walking to yew failed'); //FailSafe for RadialWalking
If FindSymbol(X, Y, 'Woodcutting') Then
Begin
Mouse(X, Y, 5, 5, True);
FFlag(0);
Writeln('At yew');
Result:= 1;
End Else
Writeln('Walikng failed');
End;
Is that the correct wording to get the Tree symbol? Or is it called something else?