Originally Posted by
pkaa4eva_jr
Hey, I might be posting this in the wrong section and if i am then i apologize but i am in a really big need of trying to find this.
When dump macros where legal there was a program posted on this site that would hit a certain keybind at an unbelivable speed so that i didnt have to mash all my macros with keybinds because there are some dump/run macros which can't be put in the same macro box so that is why i am trying to find this, iv already searched for it and i can't seem to find it.
Anybody know of it?
you could make a simple autoit script. i leeched one and changed the code a bit cuzi m a newb at autoit
Code:
HotKeySet("{F2}","onoff")
HotKeySet("{F3}","exitapp")
Dim $click = False
$name = inputbox("John's AutoClicker", "What speed do you want the auto clicker to run at? NOTE, speed goes in 1/1000 of a second, so five seconds would be 5000, And in order to reset this app you need to reset the auto clicker")
Sleep (500)
MsgBox (1, "John's AutoClicker", "Running at delay of " & $name)
MsgBox (1, "John's AutoClicker", "Push f2 to start/stop and f3 to exit.")
Func onoff()
If $click = False Then
$click = True
Else
$click = False
EndIf
EndFunc
Func exitapp()
Exit
EndFunc
While True
If $click = True Then
Send ("{a}")
sleep ($name)
EndIf
WEnd
change the red to ur keybind, when u run the script it will ask u to input desired speed in ms (1000=1 sec) i personally use 200. that's what i use anyways.