Search found 1 match

by sc30x
03 May 2024, 18:05
Forum: Gaming Help (v1)
Topic: autoclicker for joystick key
Replies: 1
Views: 288

autoclicker for joystick key

Hello. I need an ahk that will autoclick the RT key on an xbox joystick connected to a PC.
here is a code example, it's good

Code: Select all

#MaxThreadsPerHotkey 3

^z::
Toggle := !Toggle
Loop
{
	If (!Toggle)
		Break
	Click
	Sleep 83 ; Make this number higher for slower clicks, lower for faster.
}
Return

Go to advanced search