Well I'm trying to get a script to walk from Varrock West bank to Barbarian Village. I'm just using this to test
SCAR Code:
program New;
{.include SRL/SRL.scar}
procedure walk;
begin
RadialRoadWalk(8160134, 260, 180, 65, 0, 1);
writeln('walk success');
wait(1000);
FFlag(10);
RadialRoadWalk(8160134, 260, 180, 65, 0, 1);
writeln('walk success');
wait(1000);
FFlag(10);
end;
begin
SetupSRL;
FindRS;
ActivateClient;
walk;
end.
But it only clicks moves once and tells me 'walk success' even though it never does the second walk. Am I doing something wrong with FFlag or...?