The price of logs are atm 300 each! thats the price yews used to be!
I'm thinking of a script that chops around varrock bank and banks the logs if needed i got a start to the script (it finds the trees / cuts them), but i don't know how to bank them only know how to drop.
program TreeChopper;
{$i srl\srl.simba}
procedure statsguise(wat:string);
begin
Status(wat);
Disguise(wat);
End;
function Chopdown:Boolean;
Var
X, Y, Plusone, Treecounter: Integer;
begin
Plusone:= InvCount + 1;
X:=MSCX;
Y:=MSCY;
if FindObjTPA(X, Y, 2899791, 10, 1, 15, 60, 450, ['Cho']) then
begin
Writeln ('Hooray, We found a tree');
GetMousePos(X, Y);
Case Random(2) Of
0: Mouse(X, Y, 5, 5, True);
1: Begin
Mouse(X, Y, 2, 2, False);
WaitOption('Chop', 500);
end;
end;
flag;
Repeat
Marktime(TreeCounter);
wait(100);
if InvCount=Plusone Then
Writeln('We got one');
until (Invcount=Plusone) Or (TimeFromMark(TreeCounter) > 5000)
end;
end;
Made it through Yohojo's turtorial but getting strange errors if it is getting to the dropping part.
Anyone knows a guide to banking?
Thx


.
Reply With Quote
