Difference between revisions of "Biocrisis"

From Sinden Lightgun
Jump to navigation Jump to search
(Created page with "Bio Crisis is a new indie lightgun game developed using Unity. Its a arcade style zombie blaster and can be [https://store.steampowered.com/app/1448800/BioCrisis/ downloaded f...")
 
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
{{infobox
 +
|title = BioCrisis
 +
|logo = Biocrisis_Logo.jpg
 +
|category = Steam game
 +
|download = [https://store.steampowered.com/app/1448800/BioCrisis/ Steam]
 +
|license = Commercial
 +
|release = 09 Nov, 2020
 +
|type = Rail Shooter
 +
|developer = Jim
 +
|players = 1 Player
 +
|titleshot =
 +
|gameplayshot = Biocrisis_gameplay.jpg
 +
|gamename = Biocrisis
 +
|note =
 +
}}
 +
{{Controls
 +
|shoot =
 +
|reload =
 +
|grenade =
 +
|menuLabel =
 +
|menu =
 +
|selectLabel =
 +
|select =
 +
|note =
 +
}}
 
Bio Crisis is a new indie lightgun game developed using Unity. Its a arcade style zombie blaster and can be [https://store.steampowered.com/app/1448800/BioCrisis/ downloaded from Steam].
 
Bio Crisis is a new indie lightgun game developed using Unity. Its a arcade style zombie blaster and can be [https://store.steampowered.com/app/1448800/BioCrisis/ downloaded from Steam].
  
<nowiki>https://youtu.be/TD-rZ_jVb9c</nowiki>
+
It requires no setup and will work straight away.
 +
 
 +
 
 +
=== Sample AHK Script ===
 +
<syntaxhighlight lang="ahk">
 +
#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
 +
</syntaxhighlight>
 +
[[Category: Steam Games]]
 +
[[Category:Windows Games]]
 +
[[Category:Indie Games]]

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