Difference between revisions of "Biocrisis"

From Sinden Lightgun
Jump to navigation Jump to search
 
(One intermediate revision by one other user not shown)
Line 11: Line 11:
 
|titleshot =
 
|titleshot =
 
|gameplayshot = Biocrisis_gameplay.jpg
 
|gameplayshot = Biocrisis_gameplay.jpg
 +
|gamename = Biocrisis
 
|note =  
 
|note =  
 
}}
 
}}
Line 26: Line 27:
  
 
It requires no setup and will work straight away.
 
It requires no setup and will work straight away.
 +
  
 
=== Sample AHK Script ===
 
=== Sample AHK Script ===

Latest revision as of 19:19, 2 February 2023



Steam game
Download: Steam
License: Commercial
Game info
Developer: Jim
Released: 09 Nov, 2020
Players: 1 Player
Type: Rail Shooter
Biocrisis gameplay.jpg


Default Controls

Bio Crisis is a new indie lightgun game developed using Unity. Its a arcade style zombie blaster and can be downloaded from Steam.

It requires no setup and will work straight away.


Sample AHK Script

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

#SingleInstance Force 

Run %comspec% /c START steam://rungameid/1448800

$Esc::  
    Process,Close,BioCrisis.exe
    Run,taskkill /im "BioCrisis.exe" /F
    sleep, 500
    ExitApp
return