Please help with ctrl + left click spam. Topic is solved

Ask gaming related questions (AHK v1.1 and older)
Kisapl
Posts: 2
Joined: 19 Apr 2021, 08:02

Please help with ctrl + left click spam.

Post by Kisapl » 19 Apr 2021, 08:15

Hello!

Anyone can please help me to make ahk script that would hold left ctrl and spam left click when I press and hold "z" button on a keyboard. And stop doing that when I release z button.

Thanks in advance :-)

User avatar
mikeyww
Posts: 27053
Joined: 09 Sep 2014, 18:38

Re: Please help with ctrl + left click spam.  Topic is solved

Post by mikeyww » 19 Apr 2021, 09:39

Code: Select all

$z::
Send {LCtrl down}
SetTimer, Spam, 25
KeyWait, z
SetTimer, Spam, Off
Send {LCtrl up}
Return
Spam:
Click
Return

Kisapl
Posts: 2
Joined: 19 Apr 2021, 08:02

Re: Please help with ctrl + left click spam.

Post by Kisapl » 25 Apr 2021, 12:12

mikeyww wrote:
19 Apr 2021, 09:39

Code: Select all

$z::
Send {LCtrl down}
SetTimer, Spam, 25
KeyWait, z
SetTimer, Spam, Off
Send {LCtrl up}
Return
Spam:
Click
Return
thank you for help

Post Reply

Return to “Gaming Help (v1)”