Enter spam

Ask gaming related questions (AHK v1.1 and older)
Exantering
Posts: 1
Joined: 19 Dec 2018, 04:25

Enter spam

19 Dec 2018, 04:36

Hiya! I am completely new to AHK, and I figured I'd ask for some help.

I wanted to know how I can make a toggle for a keyspam.

Can anyone help me with this?

Thanks!
mast4rwang
Posts: 141
Joined: 19 Jul 2017, 09:59

Re: Enter spam

04 Jan 2019, 03:23

Basic example, press button while holding "e"

Code: Select all

*e::
BreakLoop := 0
Loop,
{
	if (BreakLoop = 1)
		break
	send,{LButton Down}
	sleep,50
	send,{LButton Up}
	sleep,250
}


*e Up::
	BreakLoop := 1
Return

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 111 guests