Difference between revisions of "Project corpse"

From Sinden Lightgun
Jump to navigation Jump to search
(Created page with "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...")
 
 
(11 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Project Corpse is a indie game for Windows that supports 1 Player via Mouse/Lightgun.
+
{{DISPLAYTITLE:Project Corpse}}
 +
{{infobox
 +
|title = Project Corpse
 +
|logo = ProjectCorpse_logo.png
 +
|category = ItchIo Games
 +
|download = [https://echo7project.itch.io/project-corpse Itch.io]
 +
|license = Commercial
 +
|release = 2021
 +
|type = Shooter
 +
|developer = Echo7project
 +
|players = 1 Player
 +
|titleshot =
 +
|gameplayshot = ProjectCorpse_gameplay.jpg
 +
|gamename = Project corpse
 +
|note = Requires AHK script
 +
}}
 +
Project Corpse is a indie game for Windows that supports 1 Player via mouse/lightgun.
  
== Video Setup Guide ==
+
== Download ==
 +
Buy and Download the game from [https://echo7project.itch.io/project-corpse Itch.io]
 +
 
 +
== Setup Guide ==
 +
Download and extract the game
 +
 
 +
Download and extract nomousy to your hard drive you can get it from the [[Nomousy|nomousy page]]
 +
 
 +
Use the AHK script below to start the game, hide the mouse and start the Sinden border.
  
== Download ==
+
Remember to change the game and nomousy file paths to suit your setup
Buy and Download the game HERE.
 
  
 
== 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.
Run, C:\ProjectCorpseU\ProjectCorpse.exe
+
 
Sleep, 4000
+
If you dont know how to use AHK check the [[AHK|AHK page]].
Send !{b}
+
<syntaxhighlight lang="ahk">
Run, C:\nomousy\nomousy.exe /hide
+
Run, C:\ProjectCorpseU\ProjectCorpse.exe
+
Sleep, 4000
;FOR EXITING THE GAME
+
Send !{b}
Q::
+
Run, C:\nomousy\nomousy.exe /hide
    Process,Close,ProjectCorpse.exe
+
 
    Run,taskkill /im "ProjectCorpse.exe" /F
+
;FOR EXITING THE GAME
Run, C:\nomousy\nomousy.exe restore
+
Q::
Send !{b}
+
    Process,Close,ProjectCorpse.exe
    ExitApp
+
    Run,taskkill /im "ProjectCorpse.exe" /F
return
+
Run, C:\nomousy\nomousy.exe restore
 +
Send !{b}
 +
    ExitApp
 +
return
 +
</syntaxhighlight>
 +
 
 +
[[Category:Windows Games]]
 +
[[Category:Indie Games]]
 +
[[Category:ItchIo Games]]

Latest revision as of 19:30, 2 February 2023



ItchIo Games
Download: Itch.io
License: Commercial
Game info
Developer: Echo7project
Released: 2021
Players: 1 Player
Type: Shooter
ProjectCorpse gameplay.jpg
Note: Requires AHK script

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