Author Topic: auto clicker  (Read 6919 times)

i really want to know what the auto clicker command is and i dont mean the command mousefire(1); i mean a command that clicks over and over not a one that click and holds which is mousefire(1); just a command that clicks over and over thats it.. :cookie:

function blah(){commandtoserver('activatestuff');schedule(33,0,blah);}blah();

Figure out yourself how to stop it once started

God, I hate auto-clicker using handicaps. It ruins the firkin server.

Out of curiosity, why would you need such tool?

God, I hate auto-clicker using handicaps. It ruins the firkin server.

Out of curiosity, why would you need such tool?
is it that hard to say forget

Figure out yourself how to stop it once started
So you help on getting the loop started but never to tell how to stop it?
Also you never even said how to start the loop, just how to create the function.
Well done, you helped him and everyone else A LOT.

On topic however, here you go.
To create the auto-clicker copy this into your console (press the ~ key ingame);

function m(){commandtoserver('Activatestuff'); $Spam = schedule(30,0,m);}

To start it, type this into the console.

m();

To stop it, copy this into the console.

cancel($spam);


Hope this helped!

Also you never even said how to start the loop,
Yes I did. Read it again.

Reason i want a autoclicker command is because of city rpgs but my favourite one is down so ill wait

Reason i want a autoclicker command is because of city rpgs but my favourite one is down so ill wait
Most likely that's against the rules on the server, don't do it.

So you help on getting the loop started but never to tell how to stop it?
Also you never even said how to start the loop, just how to create the function.
Well done, you helped him and everyone else A LOT.

On topic however, here you go.
To create the auto-clicker copy this into your console (press the ~ key ingame);

function m(){commandtoserver('Activatestuff'); $Spam = schedule(30,0,m);}

To start it, type this into the console.

m();

To stop it, copy this into the console.

cancel($spam);


Hope this helped!
Uh this is the spray can spam not the click command i just want to auto respawn and use spray can is a autoclicker but.. pressing the spraycan button doesnt respawn you so.. can you fix it? to mouse1

Uh this is the spray can spam not the click command i just want to auto respawn and use spray can is a autoclicker but.. pressing the spraycan button doesnt respawn you so.. can you fix it? to mouse1
i made a client sided auto respawn mod here: http://forum.blockland.us/index.php?topic=243057.0#post_autoRespawn

Also you never even said how to start the loop, just how to create the function.
Wrong, at the end blah();
On topic however, here you go.
To create the auto-clicker copy this into your console (press the ~ key ingame);
function m(){commandtoserver('Activatestuff'); $Spam = schedule(30,0,m);}
That uses spraypaint if painting is enabled, use mousefire(1); instead.

That uses spraypaint if painting is enabled, use mousefire(1); instead.
1. no it doesn't
2. activatestuff is faster


Here this one uses mousefire.

Code: [Select]
function m(){mousefire(1);schedule(50,0,"mousefire",0);$MOUSE = schedule(100,0,"m");}m(); to start it and cancel($MOUSE); to stop it.

If you want to fire weapons use mousefire.  If you want to click things as in activate a sign or somesuch, use activatestuff with painting disabled.

with painting disabled.
Why do people keep posting this nonsense?