Hollow Knight

Hollow Knight

Not enough ratings
Path of Pain Help
By MAKAIROSI
A simple AHK script that keeps the down arrow pressed. This helped me get through the first section of path of pain at least. You can press all keys normally, but when you attack, you will attack downwards, which is essential here.
   
Award
Favorite
Favorited
Unfavorite
The script
You need to install AHK first on your computer, it's free and super convenient if you wanna make your own scripts too. You can make autoclickers, auto-button-pressers, whatever you want. Anyway, so here's the script:

Make a file, change its extension to ".ahk" then edit with notepad++ (again, free program to write simple code). Copy and paste the code below, and then run it.

There are some issues with restarting / exiting, as for some reason it's not immediate, but it does the job, and all it does really is keep the "down arrow" pressed. Nothing more nothing less.

EDIT: If you have trouble closing the script by F6, press F6, then alt+tab. This fixed it for me. I dunno why it does that, and I don't wanna know lmao, I just finished the path of pain, and it was indeed a path of pain.

#Persistent #NoEnv SetBatchLines, -1 SendMode, Input ; Start holding the Down Arrow key when the script runs DownArrowPressed := true SetTimer, HoldDownArrow, 10 ; Hotkey to restart the script F5:: Reload return ; Hotkey to terminate the script F6:: ExitApp return ; Function to keep the Down Arrow key pressed HoldDownArrow: if (DownArrowPressed) { Send, {Down down} } return ; Release the Down Arrow key when the script is terminated OnExit("ReleaseKey") ReleaseKey() { Send, {Down up} }