Difference between revisions of "Balloon of the Living Dead"
Jump to navigation
Jump to search
Meszenator (talk | contribs) (Added game details) |
Meszenator (talk | contribs) |
||
(11 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
|logo = | |logo = | ||
|category = Itcho Games | |category = Itcho Games | ||
− | |download = https://no-bs.itch.io/balloon-of-the-living-dead | + | |download = [https://no-bs.itch.io/balloon-of-the-living-dead Itch.io] |
|license = Pay what you want | |license = Pay what you want | ||
|release = August 2025 | |release = August 2025 | ||
Line 10: | Line 10: | ||
|developer = No BS | |developer = No BS | ||
|players = 1 Player | |players = 1 Player | ||
− | |titleshot = | + | |titleshot =Ballon of the Living Dead-Gameplay.jpg |
− | |gameplayshot | + | |gameplayshot =Ballon of the Living Dead-Gameplay 2.png |
− | + | ||
}} | }} | ||
===File=== | ===File=== | ||
Download from [https://no-bs.itch.io/balloon-of-the-living-dead Itch.io website] | Download from [https://no-bs.itch.io/balloon-of-the-living-dead Itch.io website] | ||
+ | |||
+ | ===AHK Script=== | ||
+ | ''*Use the following script as the game does not have an escape/quit function''<syntaxhighlight lang="ahk"> | ||
+ | #SingleInstance Force | ||
+ | Run, G:\Indies-Light Gun\BOLD\Balloon of the Living Dead.exe | ||
+ | |||
+ | $Esc:: | ||
+ | Process,Close,Balloon_of_the_Living_Dead.exe | ||
+ | Run,taskkill /im "Balloon of the Living Dead.exe" /F | ||
+ | sleep, 500 | ||
+ | ExitApp | ||
+ | </syntaxhighlight> | ||
{{Controls | {{Controls |
Latest revision as of 04:39, 14 October 2025
Dive into a relentless arcade rail-shooter where survival means aiming for the grotesque. The infected are covered in disgusting, bubbling cysts, and your trusty shotgun is the only cure. Inspired by the frantic action of House of the Dead, your reflexes are all that stand between you and the horde.
File
Download from Itch.io website
AHK Script
*Use the following script as the game does not have an escape/quit function
#SingleInstance Force
Run, G:\Indies-Light Gun\BOLD\Balloon of the Living Dead.exe
$Esc::
Process,Close,Balloon_of_the_Living_Dead.exe
Run,taskkill /im "Balloon of the Living Dead.exe" /F
sleep, 500
ExitApp