Hello I need to put together a program to continuously repeat 1000 times 3 letters (a, s , d ) automatically in a range of 0.19 sec, for this use the following code :
Alt ::
Loop, 1000 {
Send, {a }
Send, { s }
Send { d }
Sleep , 19
}
return
I tried to make it work in a game, in a notebook me working properly and around the desk, but in the game does not play the program. I have to be configured to operate in that game somehow ? I help a lot . Thank you!
Help with autohotkey for game
Re: Help with autohotkey for game
Dependent on the game you will need to use different approaches.
Try this.
Try this.
Code: Select all
Alt::
Loop, 1000 {
SendPlay, {a}{s}{d}
Sleep , 190
}
return
Please excuse my spelling I am dyslexic.
Re: Help with autohotkey for game
I thank you for the friend helps , but does not work in the game outside the game is just ... mu online ( mudarlin.net ) ... I have to mention the game process in the program maybe?
- Flarebrass
- Posts: 104
- Joined: 20 Nov 2015, 13:13
- Location: USA
- Contact:
Re: Help with autohotkey for game
See Making AHK work in games for some additional tips.
(Note that I can't test my code before posting, so beware of bugs! -Flarebrass Amatzikahni)