Difference between revisions of "Biocrisis"
Jump to navigation
Jump to search
| (8 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]. |
||
It requires no setup and will work straight away. |
|||
<youtube>https://youtu.be/TD-rZ_jVb9c</youtube> |
|||
| ⚫ | |||
=== 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:Windows Games]] |
|||
[[Category:Indie Games]] |
|||
Latest revision as of 19:19, 2 February 2023
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