Key spammer

Ask gaming related questions (AHK v1.1 and older)
pudgeeee
Posts: 2
Joined: 18 Oct 2021, 16:54

Key spammer

Post by pudgeeee » 18 Oct 2021, 16:56

I can't piece together a full-fledged script to spam 3 keys
Need a script with activation, which when activated begins spamming Q W E with a delay of 1 second between each key
I will be very grateful for help

HotKeyIt
Posts: 2364
Joined: 29 Sep 2013, 18:35
Contact:

Re: Key spammer

Post by HotKeyIt » 18 Oct 2021, 17:17

Code: Select all

#MaxThreadsPerHotkey 2
toggle:=0
F1::
  toggle:=!toggle
  While toggle{
    Send Q
    Sleep 1000
    Send W
    Sleep 1000
    Send E
    Sleep 1000
  }
Return

Post Reply

Return to “Gaming Help (v1)”