Difference between revisions of "Project corpse"
Jump to navigation
Jump to search
Line 12: | Line 12: | ||
|titleshot = | |titleshot = | ||
|gameplayshot = ProjectCorpse_gameplay.jpg | |gameplayshot = ProjectCorpse_gameplay.jpg | ||
+ | |gamename = Project corpse | ||
|note = Requires AHK script | |note = Requires AHK script | ||
}} | }} |
Latest revision as of 19:30, 2 February 2023
Project Corpse is a indie game for Windows that supports 1 Player via mouse/lightgun.
Download
Buy and Download the game from Itch.io
Setup Guide
Download and extract the game
Download and extract nomousy to your hard drive you can get it from the nomousy page
Use the AHK script below to start the game, hide the mouse and start the Sinden border.
Remember to change the game and nomousy file paths to suit your setup
Example AHK Script
Use the following script to launch the game, apply the border and remove the cursor using nomousy.
If you dont know how to use AHK check the AHK page.
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