Hi, i really want to become a scripter and today i made an attempt at trying my first script. i got it to do what it needs to do, chop a load of oaks then drop them and repeat. but it does it all by coords, and im not sure how to use colors instead. i think the coords might be clicking the same place over and over again and thats detectable. how do i make it click colors? once i get this problem down ill add antirandoms and antiban
Heres my script so far, i will just post it since its only 25 lines:
program Adamschopper;
{.include SRL/SRL.scar}
Procedure Chop;
begin
repeat
MMouse(365,83,0,0);
wait(100+random(50));
Mouse(365,83,0,0,false);
MMouse(341,110,0,0);
wait(100+random(50))
Mouse(341,110,0,0,true);
wait(5000+random(300));
until(InvFull);
end;
procedure Drop;
begin
DropALl;
end;
begin
SetupSRL;
repeat
Chop;
Drop;
until(false);
end.
thanks for all the help!




Reply With Quote







.
