Advertisement
romaji

The script

May 27th, 2021
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5.  
  6.  
  7. #IfWinActive ahk_exe th13.exe ; change for different touhou games
  8. ; movement
  9. ; movement
  10. w::Send {Up down}
  11. w Up::Send {Up up}
  12.  
  13. a::Send, {Left down}
  14. a Up::Send, {Left up}
  15.  
  16. s::Send, {Down down}
  17. s Up::Send, {Down up}
  18.  
  19. d::Send, {Right down}
  20. d Up::Send, {Right up}
  21. ; fight buttons
  22. j::z
  23. k::x
  24. l::c
  25. `;::Shift
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement