Advertisement
Guest User

Untitled

a guest
Jun 15th, 2022
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. GroupAdd, wasd, ahk_exe eu4.exe
  2. GroupAdd, wasd, ahk_exe CK2game.exe
  3. GroupAdd, wasd, ahk_exe hoi4.exe
  4. GroupAdd, wasd, ahk_exe v2game.exe
  5. SetKeyDelay, -1
  6.  
  7. #ifwinactive, ahk_group wasd
  8.  
  9. w::Send, {Up DOWN}
  10. w UP::Send, {Up UP}
  11.  
  12. a::Send, {Left DOWN}
  13. a UP::Send, {Left UP}
  14.  
  15. s::Send, {Down DOWN}
  16. s UP::Send, {Down UP}
  17.  
  18. d::Send, {Right DOWN}
  19. d UP::Send, {Right UP}
  20.  
  21. +w::Send, w
  22. +a::Send, a
  23. +s::Send, s
  24. +d::Send, d
  25.  
  26. ^Space::
  27. Suspend, Toggle
  28. if (A_IsSuspended)
  29. SoundPlay, %WINDIR%\media\Windows Hardware Remove.wav
  30. else
  31. SoundPlay, %WINDIR%\media\Windows Hardware Insert.wav
  32. WinGet, pathVar, ProcessPath
  33. Menu, TRAY, Icon, %pathVar%
  34. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement