rapid fire key delay Topic is solved

Ask gaming related questions (AHK v1.1 and older)
neptune
Posts: 2
Joined: 24 Mar 2017, 09:38

rapid fire key delay

24 Mar 2017, 09:53

hello,

I'm using this rapid fire key script that I found but the clicks are way to fast.

~$LButton::
While GetKeyState("LButton", "P"){
Click
Sleep .1 ; milliseconds
}
return

its like 32 clicks per second.Is there a way to change it so its about 6 clicks per second?

Thanks in advanced :D
Nightwolf85
Posts: 302
Joined: 05 Feb 2017, 00:03

Re: rapid fire key delay

24 Mar 2017, 12:42

Try changing the Sleep value. 6 clicks in a second is what? about every 166 ms
User avatar
eventhorizon
Posts: 158
Joined: 27 Oct 2016, 14:22

Re: rapid fire key delay  Topic is solved

25 Mar 2017, 09:57

Code: Select all

~$LButton::
While GetKeyState("LButton", "P"){
Click
Sleep, 167 ; milliseconds
}
return
A computer lets you make more mistakes faster than any invention in human history – with the possible exceptions of handguns and tequila.
neptune
Posts: 2
Joined: 24 Mar 2017, 09:38

Re: rapid fire key delay

25 Mar 2017, 10:14

That works great.Thanks

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 37 guests