just read through it and found out that it says that once the inventory is full then it exits the script
SCAR Code:
repeat
{ MarkTime(CuttingTime);
Wait(500 + Random(500));
Randoms;
if (TimeFromMark(CuttingTime) > 10000+random(1500)) then
Chop; }
If (InvFull) then
Exit;
Wait(500 + Random(200));
Randoms;
Wait(500 + Random(500));
if not (IsUpText('illo')) then
begin
Wait(500 + Random(100));
Writeln('Finding new tree')
Chop;
end;
until (InvFull);
Wait(500 + Random(500));
If (InvFull) then
Exit;
else
Chop;
end;
and why is part of it commented out?