Paulie Posted March 5, 2006 Posted March 5, 2006 Alright, When i play games, and i have to click something repeatadly for more than like ten clicks. i wrote up this to save my clicker finger HotKeySet("{ESC}", "Terminate") Multiclick() Func Multiclick() $i=0 WinWaitActive("Warcraft III") Sleep(15000) While $i <= 1000000 MouseClick("left") ToolTip($i, 0, 0) $i=$i+1 WEnd EndFunc Func Terminate() Exit 0 EndFunc But my question is for the "mouseclick" function, is there a way to define the speed of a mouse click without defiing the coordinates, because i want it to click the button as fast a possible but only where i put the mouse TY in advance
theguy0000 Posted March 5, 2006 Posted March 5, 2006 Opt ("MouseClickDelay", 1) Opt ("MouseClickDownDelay", 2) put that at the top of your script. If the game doesn't realize that it's clicking, change the MouseClickDownDelay from 2 to something higher. The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now