Ok, I'm conceiving a new script to apply for SRL Members in a few months.
I am really close to completion except for one procedure. This procedure walks from somewhere with the Willow Trees in view to the willow trees. I have a thing that uses FindSymbol; Yet, no matter what I try, (DDTMs, RadialWalk, DTMS, BMPs) I can't develop a good failsafe. Here is the procedure. Any ideas? I attached a screenie with a circle of where I want to walk to.
SCAR Code:
procedure WalkToWillowSpot;
var
foundTheSymbol: boolean;
begin
foundTheSymbol:= FindSymbol(x,y,'fishing spot');
if(foundTheSymbol)then
begin
Writeln('Found the trees with symbol!');
Mouse(x,y,2,2,true);
end else begin
Writeln('Didn''t find the willows again!');
SwitchDaPlayer(false);
end;
end;