If i want my script to cut down a tree, and i want it to look for the congrats text for when it grows a level... And if it finds it, it adds a level to levels gained, and restarts the cutting thing. How would i do that.. Say my cutting procedure goes like this...
How would i get it to look for the text and restart the procedure if it finds it?SCAR Code:Procedure ChopTree;
begin
MakeCompass('S')
FindAxeHeadColor;
repeat
if(not (LoggedIn)) then break;
MakeCompass('S')
FindObj(x,y,'Oak', OakC, 5);
Mouse(x,y,2,2,true);
wait(1000+random(500));
FindEnt(OakC)
FindNormalRandoms;
FindHead;
wait(Waittime + Random(1000))
until(Invfull)
end;![]()







Reply With Quote

