Log in

View Full Version : Chances of being banned for an auto clicker?



bomanred7
04-19-2010, 08:04 PM
So I'm a lv 129 and i really dont wanna be banned for the first time using a autoer that is simply an auto clicker, so if it just clicks to high alc while i do so work or what, and i don't run it all day what are the chaces of being banned?

Blumblebee
04-19-2010, 08:10 PM
high if it's simply an autoclicker. Low (ish) if it's an actual script using a bot of some kind.

bomanred7
04-19-2010, 08:38 PM
weird, what do you mean a bot? And how do you acctually get caught? If someone sees you and reports the behavior, or dose rs have some sorrta ingame detection system?

Blumblebee
04-19-2010, 08:40 PM
they do have an ingame detection system, and although being reported flags your account, to the best of my knowledge, you don't need to be reported to be banned (I'm like 99.99% sure of that). An autoclicker clicks the same area continuously. A script/bot has antiban, antirandoms, randomness etc to make it more human-like and less likely of a ban.

bomanred7
04-19-2010, 09:20 PM
alright thanks, makes since now, well I have been using just an autoclicker for 2 hours now with the only randomthing that it has is changes the time intraval between clicks sometimes, but i might as well stop haha, I don't think it's safe anymore haha!

Sir R. M8gic1an
04-19-2010, 09:22 PM
alright thanks, makes since now, well I have been using just an autoclicker for 2 hours now with the only randomthing that it has is changes the time intraval between clicks sometimes, but i might as well stop haha, I don't think it's safe anymore haha!

Make sure that it doesn't always click the same pixel...

~RM

bomanred7
04-19-2010, 09:42 PM
Make sure that it doesn't always click the same pixel...

~RM

so it looks for where you click rather than the time bettwen each click or both?

Sir R. M8gic1an
04-19-2010, 09:43 PM
so it looks for where you click rather than the time bettwen each click or both?

Both, as far as we know.

~RM

i luffs yeww
04-19-2010, 10:22 PM
{.include SRL/SRL.scar}
var
x, y: Integer;
begin
SetupSRL;
MouseBox(584, 255, 590, 261, 1);
GetMousePos(x, y);
repeat
Mouse(x, y, 0, 0, True);
Wait(100 + Random(500));
Mouse(x, y, 0, 0, True);
Wait(1750 + Random(500));
until(False);
end.


That's what I used for alching. And for string jewelry (which I'm going to be doing from 84-90 mage, already got up to 84 mage from simple scripts like the one above, and a curser, still about the same length), it's just a little longer due to banking. But really, it's no big deal. Just be around when you auto, and check it every once in awhile. And always use randomness. ^^

Good luck.

Timer
04-19-2010, 10:38 PM
{.include SRL/SRL.scar}
var
x, y: Integer;
begin
SetupSRL;
MouseBox(584, 255, 590, 261, 1);
GetMousePos(x, y);
repeat
Mouse(x, y, 0, 0, True);
Wait(100 + Random(500));
Mouse(x, y, 0, 0, True);
Wait(1750 + Random(500));
until(False);
end.


That's what I used for alching. And for string jewelry (which I'm going to be doing from 84-90 mage, already got up to 84 mage from simple scripts like the one above, and a curser, still about the same length), it's just a little longer due to banking. But really, it's no big deal. Just be around when you auto, and check it every once in awhile. And always use randomness. ^^

Good luck.

Fail!


{.include SRL/SRL.scar}
var
x, y: Integer;
begin
SetupSRL;
MouseBox(584, 255, 590, 261, 1);
GetMousePos(x, y);
repeat
Mouse(x, y, 3, 3, True);
Wait(100 + Random(500));
Mouse(x, y, 3, 3, True);
Wait(1750 + Random(500));
until(False);
end.

i luffs yeww
04-19-2010, 10:44 PM
Not for an alcher. :) It was clicking in the same spot because that's how people alch. They don't move within a nine pixel area to alch.

MylesMadness
04-19-2010, 10:50 PM
they dont click the same spot at all...

i luffs yeww
04-20-2010, 01:01 AM
Every person I know does. They make the item in the same spot as it is to initiate the alchemy, and then they just click that one spot. A lot of people also just press 5.

aran armath
04-20-2010, 02:31 AM
{.include SRL/SRL.scar}
var
i, q, x, y: Integer;
begin
SetupSRL;
i := 1;
repeat
MouseBox(584, 255, 590, 261, 1);
GetMousePos(x, y);
repeat
Mouse(x, y, 0, 0, True);
Wait(100 + Random(500));
Mouse(x, y, 0, 0, True);
Wait(1750 + Random(500));
q := random(5)
until(i = q);
until(False);
end.

Thats what I would have it do, just to have a little more random movement of the mouse. Think about it, with a mouse you are bound to move the mouse a little every now and again, its just natural. With optical mouses they detect smaller movements then with a mouseball. Now that I say that lets fix that script a little more.


{.include SRL/SRL.scar}
var
z, c, i, q, x, y: Integer;
begin
SetupSRL;
i := 1;
MouseBox(584, 255, 590, 261, 1);
GetMousePos(x, y);
repeat
z := x+random(2);
c := y+random(2);
repeat
Mouse(z, c, 0, 0, True);
Wait(100 + Random(500));
Mouse(z, c, 0, 0, True);
Wait(1750 + Random(500));
q := random(5)
until(i = q);
until(False);
end.

i luffs yeww
04-20-2010, 04:01 AM
That's doing the same thing, just getting two different pixels. :p It won't do z := x + Random(2) or c := y + Random(2) unless i = q. ;)

Dgby714
04-20-2010, 08:06 AM
program Alcher;
{.include SRL/SRL.scar}

var
x, y: Integer;

begin
SetupSRL;
MouseBox(584, 255, 590, 261, 1);
GetMousePos(x, y);
repeat
Mouse(x, y, 2 * Random(2), 2 * Random(2), True);
Wait(100 + Random(500));
Mouse(x, y, 2 * Random(2), 2 * Random(2), True);
Wait(1750 + Random(500));
until(False);
end.

Daniel
04-20-2010, 09:07 AM
program Alcher;
{.include SRL/SRL.scar}

var
x, y: Integer;

begin
SetupSRL;
MouseBox(584, 255, 590, 261, 1);
GetMousePos(x, y);
repeat
Mouse(x, y, 2 * Random(2), 2 * Random(2), True);
Wait(100 + Random(500));
Mouse(x, y, 2 * Random(2), 2 * Random(2), True);
Wait(1750 + Random(500));
until(False);
end.
Random(2) = 0 or 1.

2 * 0 = 0
2 * 1 = 2

is that what you were trying to achieve? :S

Frement
04-20-2010, 09:10 AM
Every person I know does. They make the item in the same spot as it is to initiate the alchemy, and then they just click that one spot. A lot of people also just press 5.

I also tilt my mouse upside down so it doesnt move at all, then i just click.

aran armath
04-20-2010, 03:00 PM
That's doing the same thing, just getting two different pixels. :p It won't do z := x + Random(2) or c := y + Random(2) unless i = q. ;)

I know it won't, I wrote it like that on purpose. Its so the mouse moves a little bit, based upon the first mouse click. Doesn't change every click but ever few. Just giving you another way to move the mouse a bit.

Dgby714
04-20-2010, 06:32 PM
Random(2) = 0 or 1.

2 * 0 = 0
2 * 1 = 2

is that what you were trying to achieve? :S

yes... 50% chance of a random(3) being added to x and y =)

g0tp0t
04-26-2010, 04:21 PM
i think that would mean the mouse would jump a pixel, and that is unhuman, but all you need is:


const
WT = 1000
numclicks

begin
while not ismousebuttondown(true) do wait(10)
while ismousebuttondown(true) do wait(10)
getmousepos(ox,oy)
for i := 1 to numclicks do
begin
wait(WT+random(100));
getmousepos(x,y)
if abs(ox-x) > 3 or abs(oy-y) > 3 then
mouse(ox,oy,1,1,true)
else
mouse(x,y,0,0,true)
end;
end;



i did this in the quick reply box since i dont have scar on this computer ;). it might not compile, if it doesnt then sdomeone can just repost it fixed, lol. it will wait for you to click once and release on the spot then it will repeat at that spot every second