Does it walk from bank to yews...? heh..stupid question 
Here it is:
SCAR Code:
program WalkToYew;
{.include srl/srl.scar}
Function CheckIfAtYews:Boolean;
begin
if(FindSymbol(x,y,'Tree'))and
FindSymbol(x,y,'Altar')then
result:=true;
end;
procedure WalkToYew;
var FoundYewSymbol:Boolean;
begin
MakeCompass('E')
Wait(500)
MakeCompass('N')
Wait(300)
RadialRoadWalk(FindRoadColor,-30,-10,65,1,-1);
Wait(1000)
RadialRoadWalk(FindRoadColor,-10,15,60,-1,1);
Wait(1000)
RadialRoadWalk(FindRoadColor,-10,15,60,-1,1);
Wait(1000)
RadialRoadWalk(FindRoadColor,-10,15,45,-1,1);
Wait(1000)
repeat
FindSymbol(x,y,'Tree');
FoundYewSymbol:=true;
Mouse(x,y,5,5,True);
Flag;
until(FoundYewSymbol)
if(CheckIfAtYews=false)then
begin
TerminateScript;
end;
end;
begin
SetupSRL;
DisguiseScar('Vegas 7.0')
NEWLINE:='no Hints pls';
Wait(1000)
WalkToYew;
Wait(1000)
Writeln('Successfully walked to yews...!')
end.
It has some detectors...
... i made this in 10 minutes so it may not be 100% but you can try...it walked to yews many times at my computer...do you know how to include this to your script ??
i hope ya know...include the function too
the procedure needs it