Page 1 of 1

How to create really fast "e" spammer?

Posted: 20 Jun 2021, 02:52
by zerox
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!

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

Posted: 20 Jun 2021, 06:30
by mikeyww

Code: Select all

$e::
While GetKeyState("e", "P")
 Send e
Return
You can use SendInput or change the SetKeyDelay to gain some speed.

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

Posted: 20 Jun 2021, 06:35
by Rohwedder
Hallo,
or:

Code: Select all

$e::
While, GetKeyState("e","P")
	SendInput, {e 99}
SoundBeep, 4000, 20 ;for testing only
Return

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

Posted: 20 Jun 2021, 06:45
by mikeyww
The name should be "Roh-better" :) :)