Jump to content


Auto-clicker which also works in browser games


  • Please log in to reply
3 replies to this topic

#1 Oxylus

Oxylus
  • Guests

Posted 13 July 2012 - 07:12 AM

A simple Auto-Clicker that starts working when you press Caps-Lock and stops working when you turn off caps-lock.
Works for in browser games as well as everyday functions.

~capslock::
if getkeystate("capslock", "T") ; checks if capslock is on or off
settimer, playmygame, 300 ; clicks every 300ms if capslock is on
else
settimer, playmygame, Off ; Turns off the autoclicking if capslock is off
return

playmygame:
SendInput, {Click} ; send a click.
Return


I take no credit for this script. Forum users helped me out

#2 jevola

jevola
  • Members
  • 3 posts

Posted 18 July 2012 - 06:45 PM

Huh, neat. Thanks!

I'm going to use something like this as a toggle for my tank's "hit 5, GCD (wait 1.5s), hit 5 GCD" ad nauseum trashmob macro rotation

#3 jevola

jevola
  • Members
  • 3 posts

Posted 18 July 2012 - 08:08 PM

I did this for my trashmob rotation toggle, since SetTimer seems to wait then perform the action and I need to start with the action then perform the wait

~capslock::
LOOP
	{
	if getkeystate("capslock", "T")
		{
		Send, 5
		Sleep 1505
		}
	else
		break
	}


#4 auto clicker

auto clicker
  • Members
  • 1 posts

Posted 12 March 2013 - 03:02 AM

I used another software to do this job which is named Cok Free Auto Clicker