I posted a script yesterday that i made but doesn't work and that was all messed up
but i made a new script from scratch ,hoped for it to work and guess what!
Doesn't work!
Please can you have a look and post the errors thank you, Tomdavies.
SCAR Code:
///////////// Auto cutter 0.01 //////////////
//////////// By tomdavies ///////////////
// 1. set cross onto rs client //
// 2. long into your account //
// 3. press play and watch cut //
// 4.!! does not drop cant script that well //
// yet!! //
//////////////////////////////////////////////
program TreeCutter;
{.include SRL/SRL.scar}
var
i, x, y:interger;
const
Treecolor = 2380359; // sets tree Color.
procedure TreeCut; // begins tree cut program.
begin
Disguise('My Documents'); // disguises Scar.
GetApplication.MINIMIZE; // minimizes program to run script.
repeat;
if(FindColor(x,y,TreeColor,0 ,0 ,582 , )) then
begin
wait(2000 +random(200))
mouse(x, y, 3, 3, True); // moves mouse.
end;
end else
begin
writline('there is no tree');
writline('preparing to log out');
LogOut; //logs out.
end;
end;
begin
SetupSrl; // sets up srl
TreeCut; // cuts the tree
end.