How to create really fast "e" spammer?

Ask gaming related questions (AHK v1.1 and older)
zerox
Posts: 77
Joined: 15 Apr 2021, 13:01

How to create really fast "e" spammer?

Post by zerox » 20 Jun 2021, 02:52

So i want this command: while hold "e" spamming "e" really fast. So when i hold "e" key, i want spam as many "e" as its possible. Thanks for any help!
User avatar
mikeyww
Posts: 26849
Joined: 09 Sep 2014, 18:38

Re: How to create really fast "e" spammer?

Post by mikeyww » 20 Jun 2021, 06:30

Code: Select all

$e::
While GetKeyState("e", "P")
 Send e
Return
You can use SendInput or change the SetKeyDelay to gain some speed.
Rohwedder
Posts: 7613
Joined: 04 Jun 2014, 08:33
Location: Germany

Re: How to create really fast "e" spammer?

Post by Rohwedder » 20 Jun 2021, 06:35

Hallo,
or:

Code: Select all

$e::
While, GetKeyState("e","P")
	SendInput, {e 99}
SoundBeep, 4000, 20 ;for testing only
Return
User avatar
mikeyww
Posts: 26849
Joined: 09 Sep 2014, 18:38

Re: How to create really fast "e" spammer?

Post by mikeyww » 20 Jun 2021, 06:45

The name should be "Roh-better" :) :)
Post Reply

Return to “Gaming Help (v1)”