Im currently working on an auto wcing script and I need help with the dropper.
My goal is to get it to drop until the dtm can no longer be found
SCAR Code:
begin
if FindDTM(WillowLog, x, y, MIX1, MIY1, MIX2, MIY2) then
begin
repeat
Mouse(x, y, 5, 5, false); //right clicks dtm
ChooseOption('rop'); //drops the log
until // heres where i need it
end else
writeln('no dtms');
end;
I was wondering what command i would use to get it to loop until like finddtm = false or if not finddtm or something Im not sure on what the command would be... any suggestions?