Rewl Posted November 17, 2010 Posted November 17, 2010 (edited) IntroductionAs I play alot of games that make you have to click, My hand gets tired from all the clicking. So as a second program I thought, "Why not make an auto clicker." So I did.Launchesv1.0 -- ReleaseWhat it DoesAuto clicker that when your right click, it pauses the script for 2 seconds than goes back to auto clicking.Controls are:Esc- closeSpacebar - PauseBugsNone right now! Post any!Sourceexpandcollapse popup#include<IE.au3> #include <Misc.au3> HotKeySet("{ESC}" , "close") HotKeySet("{SPACE}" , "startpause") Dim $click = False $dll = DllOpen("user32.dll") CMsgBox(64, "Rewl's Auto Click v1.0" , "Thank-you for using Auto Clicker, Press ""ESC"" to close the program and ""spacebar"" to pause the clicker and SpaceBar to start it.") Func close() $iE = _IECreate() $m = MsgBox(4 , "Rewl's Auto Click v1.0" , "Thank-you for trying the program, Press yes to visit Auto-IT Thread.") IF $m = 6 Then _IENavigate($iE , "http://www.autoitscript.com/forum/topic/122227-auto-click/") EndIf Exit EndFunc Func startpause() If $click = False Then $click = True ToolTip("Rewl Auto Click v1.0 Running." , 0 , 0) Else $click = False ToolTip("Rewl Auto Click v1.0 Paused." , 0 , 0) EndIf EndFunc While 1 If _IsPressed ( "02" ) = 1 Then ConsoleWrite ( "Sleep ( 2000 )" & @Crlf ) Sleep ( 2000 ) $click = True EndIf If $click = True Then MouseClick("left") Sleep(50) EndIf sleep(20) WEndAuto Clicker.au3 Edited November 17, 2010 by Rewl [size="1"]Programs: Draw Tool | [/size]
JohnOne Posted November 17, 2010 Posted November 17, 2010 Hey the script didnt worked. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
wakillon Posted November 17, 2010 Posted November 17, 2010 it's a good start ! AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts
Developers Jos Posted November 17, 2010 Developers Posted November 17, 2010 IntroductionAs I play alot of games that make you have to click, My hand gets tired from all the clicking. So as a second program I thought, "Why not make an auto clicker." So I did.Lets not go into autoclicker mode and stick to our rules.*click* SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Recommended Posts