Difference between revisions of "Biocrisis"
Jump to navigation
Jump to search
| (3 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
{{infobox | {{infobox | ||
|title = BioCrisis | |title = BioCrisis | ||
| − | |logo = | + | |logo = Biocrisis_Logo.jpg |
|category = Steam game | |category = Steam game | ||
|download = [https://store.steampowered.com/app/1448800/BioCrisis/ Steam] | |download = [https://store.steampowered.com/app/1448800/BioCrisis/ Steam] | ||
| Line 10: | Line 10: | ||
|players = 1 Player | |players = 1 Player | ||
|titleshot = | |titleshot = | ||
| − | |gameplayshot = Biocrisis_gameplay. | + | |gameplayshot = Biocrisis_gameplay.jpg |
| + | |gamename = Biocrisis | ||
|note = | |note = | ||
}} | }} | ||
| Line 27: | Line 28: | ||
It requires no setup and will work straight away. | 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: Steam Games]] | ||
[[Category:Windows Games]] | [[Category:Windows Games]] | ||
[[Category:Indie 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