At a certain point my runescape just freezes the the script can't handle it :S
Here is my procedure, where it starts to freeze I put //Freezes here
SCAR Code:
procedure WalkToWillowsandCut;
begin
if (FindSymbol(x, y, 'Fish')) then
begin
Mouse(x, y, 2, 1, True);
setrun(true);
Gametab(4)
end else
begin
Writeln('Can not find Symbol, switching players');
Logout;
Nextplayer(true);
end;
wait(5000);
flag;
FindAxeHeadColor;//Finds the color, clicks on bag :S
if (FindColor(x, y, WillowColor, 0, 0, 600, 600)) then//Freezes here
begin
repeat
FindHead;
FindEnt(WillowColor);
MMouse(x, y, 2, 1);
wait(1000 + random(10));
if (IsUpText('Chop')) then
begin
Mouse(x,y,2,1,true);
FindHead;
FindEnt(WillowColor);
end else
begin
Writeln('Can not find willows, switching players');
Logout;
Nextplayer(true);
end;
until (InvFull);
end;
end;