Apparently some games can ban you if they detect inhuman inputs (such as 600 clicks/key strokes per second). I want to change the frequency at which autohotkey clicks to something reasonable such as 5 or 10. Along with the obvious thing I need to edit to further change the frequency.
I am using this script for autofire. It also uses "q" to toggle suspend on it.
Code: Select all
q::
Suspend
return
$LButton::
Loop
{
if not GetKeyState("LButton", "P")
break
Click
}
return
I am also using this script to auto spam "e". Lower frequency on this as well. Notice how it is also using "q" to toggle suspend.
PROBLEM. "q" will only toggle suspend on the last script started. I can use a different hotkey but I would really like to toggle suspend on all scripts with just one key.
Code: Select all
q::
Suspend
return
$e::
While GetKeyState("e","P")
Send, {e}
Return
None of the "But this is so easy it has been talked about so many times here "link". Please search before posting." Yeah about that. If it is so easy for you, please don't be an elitist **** spending 30 seconds to write a hate comment but spend 30 seconds to fix the script. I keep googling help for autohotkey and most of the time I just see people asking for help and elitist ***** linking a page with code that doesn't even work (maybe because I don't know how to use it). Such as this
https://autohotkey.com/docs/commands/Suspend.htm . I couldn't get that suspend code to work in my script. The one in the script I just posted worked for me. And finally, I have absolutely no idea how to make autohotkey scrips. I just combine bits of code I find and make minor changes.