Difference between revisions of "Project corpse"
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
== Example AHK Script == | == Example AHK Script == | ||
− | Use the following script to launch the game, apply the border and remove the cursor using nomousy.<syntaxhighlight lang="ahk"> | + | Use the following script to launch the game, apply the border and remove the cursor using nomousy. |
+ | <syntaxhighlight lang="ahk"> | ||
Run, C:\ProjectCorpseU\ProjectCorpse.exe | Run, C:\ProjectCorpseU\ProjectCorpse.exe | ||
Sleep, 4000 | Sleep, 4000 |
Revision as of 11:33, 7 December 2022
Project Corpse is a indie game for Windows that supports 1 Player via Mouse/Lightgun.
Video Setup Guide
Download
Buy and Download the game HERE.
Example AHK Script
Use the following script to launch the game, apply the border and remove the cursor using nomousy.
Run, C:\ProjectCorpseU\ProjectCorpse.exe
Sleep, 4000
Send !{b}
Run, C:\nomousy\nomousy.exe /hide
;FOR EXITING THE GAME
Q::
Process,Close,ProjectCorpse.exe
Run,taskkill /im "ProjectCorpse.exe" /F
Run, C:\nomousy\nomousy.exe restore
Send !{b}
ExitApp
return