
Originally Posted by
i luffs yeww
The reason ClickMouse is thought to be detectable is because it clicks at well above human speeds.
I see.
Well, it seems that my original script wouldn't have worked anyhow. The first click would be at superhuman speeds.
Here is an updated one, which should work, I think:
Code:
program New;
{.include SRL/SRL.scar}
var
x,y : Integer;
Procedure SetUp;
begin
x:=RandomRange(670, 684);
y:=RandomRange(275, 289);
MoveWindMouseEx(x, y, 0, 0, 10);
wait(1000+random(500));
end;
Procedure Click;
begin
ClickWindMouse(x, y, 0, 0, True);
wait(1300+random(500));
end;
begin
SetUp;
repeat
Click;
until(false)
end.