I need help for a script.

Ask gaming related questions (AHK v1.1 and older)
Pacifista
Posts: 46
Joined: 17 Jan 2022, 16:17

I need help for a script.

Post by Pacifista » 22 Jan 2023, 07:32

Can you help me at creating a script.

I'm just gonna press "space bar" once and it will trigger between 165 - 180 miliseconds randomly "a" key and release.

I mean whenever i press space once it will trigger a key randomly between 165 and 180.

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

Re: I need help for a script.

Post by mikeyww » 22 Jan 2023, 13:13

Code: Select all

#Requires AutoHotkey v1.1.33
Space::
Random rnd, 165, 180
Sleep rnd
Send a
Return

Code: Select all

#Requires AutoHotkey v1.1.33
Space::
Random rnd, 165, 180
Send {a down}
Sleep rnd
Send {a up}
Return

Pacifista
Posts: 46
Joined: 17 Jan 2022, 16:17

Re: I need help for a script.

Post by Pacifista » 22 Jan 2023, 17:13

Another masterpiece by the mikeyww.

Sir, without your help my gaming days are over.

User avatar
DuckingQuack
Posts: 221
Joined: 20 Jan 2023, 18:20

Re: I need help for a script.

Post by DuckingQuack » 22 Jan 2023, 18:43

@Pacifista I know how you feel!

Post Reply

Return to “Gaming Help (v1)”