PDA

View Full Version : Anti-Ban Autoclicker?



anti
06-19-2007, 04:02 AM
I need a mouse to click in one place, but to click at somewhat random times.

Thanks,
~Anti

Bobarkinator
06-19-2007, 04:43 AM
You are saying you don't want to get banned but you want to coord click?

anti
06-19-2007, 04:46 AM
You are saying you don't want to get banned but you want to coord click?

I meant I want an autoclicker that will click at random times, I can control the mouse, and has a random offsetting of ms, that's all I want in it.

Im going to use a lvl 3 so i dont care if it gets banned.

alach11
06-19-2007, 05:43 AM
So all you'd want is a holdmouse; and releasemouse; with a certain amount of time in between?

How long do you want it? Be more specific.

PwNZoRNooB
06-19-2007, 06:25 AM
Can I ask you why you need this, because this sounds kinda useless? :confused:

The Claw
06-19-2007, 12:09 PM
program New;
{.include SRL/SRL.scar}

begin
SetupSRL;
repeat
Mouse(your x co-ord here, your y co-ord here, 5, 5, true)
Wait(1000 + random(1000)); //change to whatever you want
until(False);
end.

?