need quick W>A>S>D rotation on one key press
-
- Posts: 7
- Joined: 27 Dec 2020, 15:16
need quick W>A>S>D rotation on one key press
Hello im noob with autohotkey... i need an autohotkey script whenever i press "x" it will quickly press W>A>S>D in quick succession. can someone help?
Re: need quick W>A>S>D rotation on one key press
Code: Select all
x::send, wasd
Re: need quick W>A>S>D rotation on one key press
And here is a key list if needed.
-
- Posts: 7
- Joined: 27 Dec 2020, 15:16
Re: need quick W>A>S>D rotation on one key press
hello the script press "wasd" at same time i need something that would press wasd with slight delays between each press
Re: need quick W>A>S>D rotation on one key press
Code: Select all
x::
SetKeyDelay, 50
Send {w down}{a down}{s down}{d down}{d up}{s up}{a up}{w up}
Return
Who is online
Users browsing this forum: demon12, PuzzledGreatly and 6 guests