
Originally Posted by
Griff
It shouldn't do that. Did you remember to change the until so that the UpText is for the tree that you are cutting, because it's set for yews in the tutorial.
Copied your script line by line and it continually clicks.
Problem with mine is that when I walk to the tree it'll move the X/Y coordinates and in turn click 1 or two more times.
What I wrote up.. (Don't hate to much porfavor, never scripted in my life.)
Simba Code:
procedure ChopTree;
var x,y,colorz: integer;
begin
repeat
FindNormalRandoms;
if FindObj(x,y,'hop',3563606,15) then
begin
Writeln('Found Yew Tree chopping now..');
colorz:=GetColor(x,y);
Mouse(x,y,4,4,false);
ChooseOption('hop');
while GetColor(x,y)=colorz do
begin
wait(100);
end;
end else Writeln('Cannot find Yew Tree');
Wait(1250+random(200));
AntiBan;
until(InvFull);
end;
Note: Chase helped come up with the idea to use GetColor/helped write it.