I want to spam 2 buttons at the same time but every script ive used doesnt work

Ask gaming related questions (AHK v1.1 and older)
ram3ll
Posts: 2
Joined: 09 Aug 2019, 20:50

I want to spam 2 buttons at the same time but every script ive used doesnt work

09 Aug 2019, 21:00

Hey! So i am trying to spam 2 buttons at the same time (PgUp and Numpad5) but it doesnt work.
I am quite a noob at autohotkey so that might be why.
Here is my original script, please help
Spoiler
ram3ll
Posts: 2
Joined: 09 Aug 2019, 20:50

Re: I want to spam 2 buttons at the same time but every script ive used doesnt work

09 Aug 2019, 21:10

This is for GTA V by the way if you're wondering
deloren
Posts: 29
Joined: 17 Oct 2018, 11:03

Re: I want to spam 2 buttons at the same time but every script ive used doesnt work

12 Aug 2019, 11:54

Code: Select all

!Lbutton::
loop
{
Send {PgUp}{Numpad5}
sleep 10
}
return
To be able stop loop would be better to use:

Code: Select all

#MaxThreadsPerHotkey 2

!Lbutton::
toggle:=!toggle
while toggle {
	Send {PgUp}{Numpad5}
	sleep 10
}
return

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 64 guests