Skip to content

Commit

Permalink
main: convert to wasd
Browse files Browse the repository at this point in the history
  • Loading branch information
aeghost committed Jan 1, 2022
1 parent 70a9bc6 commit ccf0191
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Not-AFK.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ idleTimeCheck := 30000

; You can change the key sequence to adapt it to whatever your bindings are,
; It should be a space separated list of keys to send, to send an actual space use {space}
keySequence := "z q s d"
keySequence := "w a s d"
anyKeys := StrSplit(keySequence, A_space)

; If you dont want the character to move,
; you may indicate what is the actual oposite movement key from your bindings
; ie : if 'z' is sent, your character will go forward, an 's' for backward is also sent
keySequenceOpposite := { z: "s", s: "z", q: "d", d: "q" }
keySequenceOpposite := { w: "s", s: "w", a: "d", d: "a" }
return
; ----------------------------------------- -

Expand Down

0 comments on commit ccf0191

Please sign in to comment.