Here, this is basic. Do you think this script is going to help?
SCAR Code:
program New;
{.include SRL/SRL.scar}
{.include SRL\SRL\skill\Woodcutting.scar}
const
TreeWait = 5000; //ms's before clicking next tree.
procedure findandchop;
var
Treew: integer;
begin
if (InvFull) then
Exit
else
MarkTime(Treew);
repeat
FindObj(x, y, 'Tree', 3043432, 10); //might want to set the color as a const also
until (FindObj(x, y, 'Tree', 3043432, 10)) or
(TimeFromMark(Treew) = 10000) and not (FindObj(x,y,'Tree',3043432,10))
if (FindObj(x,y,'Tree',3043432,10)) then
begin
Mouse(x, y, 3, 3, True);
Wait(TreeWait + Random(700));
end else
WriteLn('Cannot find tree, terminating...');
TerminateScript;
end;
begin
SetUpSRL; //ALWAYS NEED THIS!!!
repeat
if (InvFull) then break;
findandchop;
until(InvFull)
end.