Thanks for your suggestions, I've implemented most of them, but I can't get InvMouse to work. I did
Simba Code:
for I:=1 to 28 do
begin
Invmouse(I, mouse_left);
wait(100+random(100));
Antirandom;
Antiban;
end
but it does the same thing as the FindDTM, all left to right. There must be some way to get it to alternate in the direction of clicking, but I'm stumped. And also, what's the function to change mouse speed? I saw it somewhere, but I can't remember.
Thanks
EDIT:
This works
Simba Code:
for I:=1 to 4 do
begin
Invmouse(I, mouse_left);
wait(100+random(100));
Inc(HerbsCleaned);
Antirandom;
Antiban;
end;
for I:=8 to 8 do
begin
Invmouse(I, mouse_left);
wait(100+random(100));
Inc(HerbsCleaned);
Antirandom;
Antiban;
end;
for I:=7 to 7 do
begin
Invmouse(I, mouse_left);
wait(100+random(100));
Inc(HerbsCleaned);
Antirandom;
Antiban;
end;
for I:=6 to 6 do
begin
Invmouse(I, mouse_left);
wait(100+random(100));
Inc(HerbsCleaned);
Antirandom;
Antiban;
end;
for I:=5 to 5 do
begin
Invmouse(I, mouse_left);
wait(100+random(100));
Inc(HerbsCleaned);
Antirandom;
Antiban;
end;
But it's really long, and looks ugly. Is there anyway to shorten it? I've tried
, which doesn't work.
Essentially, what I'm asking is, if there is any way to make I 1-4, then 8-5, then 9-12, then 16-13, etc.
Thanks again.