Can someone create a ahk file for me?

Ask gaming related questions (AHK v1.1 and older)
DragonTJech
Posts: 2
Joined: 13 Mar 2018, 23:27

Can someone create a ahk file for me?

13 Mar 2018, 23:39

Can someone Create a "ahk" file for me, thats when on a button press(numpad7) that spams the keys(234567890) and (enter) forever till stopped using the same key(numpad 7)
If u could just paste the code in the chat, that would be nice,
thx in advance
User avatar
Nwb
Posts: 444
Joined: 29 Nov 2016, 08:56

Re: Can someone create a ahk file for me?

14 Mar 2018, 00:37

Paste this in an .ahk file and run it. Numpad 7 (regardless of if numlock is on or not) will start/stop spam. Esc will close script. Anything else?

Code: Select all

Toggle := 0

Numpad7::
NumpadHome::
Toggle := !Toggle
If Toggle 
    SetTimer, Spam, 0
else
    SetTimer, Spam, Off
return

Spam:
Send, 234567890
Send, {Enter}
return

esc:: ExitApp
I am your average ahk newbie. Just.. a tat more cute. ;)

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 68 guests