Post Reply Home » Forums » EverQuest 2 » EverQuest 2 General Discussions

Auto Clicker : EverQuest 2 General Discussions

Posted: August 17th, 2009
User avatar
Moderator
Total Posts:63 Joined:2009
Anyone know where i can get a free and good auto clicker?
Posted: October 5th, 2009
grufftech
Easy: G15 Keyboard, however its not free.


Decent & Free: AutoIt (Link) Software & Below Script.

Code: Select all

HotKeySet("{Home}","click")
Hotkeyset("{END}","stop")
Hotkeyset("{PAUSE}","Pause")
Global $Paused
Global $Wait
Wait()

Func click()
	While 1
		MouseClick("left")
		sleep(100)
	WEnd
EndFunc

Func Pause()
	$Paused = NOT $Paused
	While  $Paused
		ToolTip("Paused", 2, 0)
		Sleep (400)
	WEnd
EndFunc

Func Wait()
	$Wait = NOT $Wait
	While  $Wait
	    ToolTip("Press the HOME key to start ", 2, 0)
		Sleep (400)
	WEnd
EndFunc

Func stop()
	Exit
EndFunc


Run the Script with Autoit, Home starts clicking, Pause obvously pauses, End closes the script.
Posted: September 11th, 2010
User avatar
Moderator
Total Posts:63 Joined:2009
anyone have a program i can download for a auto clicker??
Posted: September 13th, 2010
User avatar
Total Posts:97 Joined:2009
download and install "AutoIt", just google it... or if you don't like that one, download and install "autohotkey"

if you use AutoIt all you have to do is make .Au3 text file with the following lines in it:

While True
Sleep( 2000 )
MouseClick("left")
WEnd


this will make a macro that just left clicks every 2 seconds untill you cancel the script
Posted: September 13th, 2010
User avatar
Total Posts:97 Joined:2009
oh ya i guess i should have read grufftech's post before i posted mine, same thing really :-)
Posted: September 18th, 2010
User avatar
administrator
Total Posts:29918 Joined:2002
Ha no worries jrob happens to us all.
Ready to join the community? Click here and see all of the benefits!
blue large dotWho is online
Users browsing this forum: No registered users and 24 guests
Post Reply