
Originally Posted by
awesom
I think you learn most from making completely own script
I totally agree with that! I have needed tutorials nowhere (no offense to tutorial makers. Tutorials of course help most of people to get started).
If you know some simple SCAR functions (mouse, colors, finding objects) and how to use them, then just go and start making your script, one function after one, like make woodcutting part, then dropping part and maybe then progress report etc. when one function works, then start making new function. And then just add new stuff etc, and you have a good script there. 
EDIT:
Any help of this? Made it very fast.
SCAR Code:
{.include SRL/SRL.scar}
const
TreeColor = 00000; //CTRL + P to pick color
Function FindTree: Boolean;
begin
if FindObj(x, y, 'Chop', TreeColor, 30) then //Find tree
Result := True;
end;
Procedure CutTree;
begin
GetMousePos(x, y);
Mouse(x, y, 5, 5, True); //Click on tree
end;
Procedure DropThem;
begin
DropTo(2, 28); //Drops from inventory slot 2 to 28
end;
begin
SetUpSRL;
repeat
repeat
if FindTree then
CutTree
until InvFull //Cuts tree until inventory is full.
DropThem;
until False;
end.