Difference between revisions of "Project corpse"

From Sinden Lightgun
Jump to navigation Jump to search
Line 1: Line 1:
 
Project Corpse is a indie game for Windows that supports 1 Player via Mouse/Lightgun.
 
Project Corpse is a indie game for Windows that supports 1 Player via Mouse/Lightgun.
  
== Video Setup Guide ==
+
== Setup Guide ==
<youtube>https://youtu.be/pYjNYg2x48Y</youtube>
+
Download and extract the game from the below link.
 +
 
 +
You will also want to download and extract nomousy to your hard drive you can get it from the nomousy page [[Nomousy|HERE]].
 +
 
 +
You can then use the 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
 +
 
 +
Also remember you will have to start the Sinden software before you run the script.
  
 
== Download ==
 
== Download ==
Line 9: Line 17:
 
== Example AHK Script ==
 
== Example AHK Script ==
 
Use the following script to launch the game, apply the border and remove the cursor using nomousy.
 
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.
 
<syntaxhighlight lang="ahk">
 
<syntaxhighlight lang="ahk">
 
Run, C:\ProjectCorpseU\ProjectCorpse.exe
 
Run, C:\ProjectCorpseU\ProjectCorpse.exe

Revision as of 14:19, 18 December 2022

Project Corpse is a indie game for Windows that supports 1 Player via Mouse/Lightgun.

Setup Guide

Download and extract the game from the below link.

You will also want to download and extract nomousy to your hard drive you can get it from the nomousy page HERE.

You can then use the 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

Also remember you will have to start the Sinden software before you run the script.

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.

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