Difference between revisions of "Balloon of the Living Dead"
Jump to navigation
Jump to search
Meszenator (talk | contribs) m |
Meszenator (talk | contribs) (Added AHK Script for Escape function) |
||
Line 17: | Line 17: | ||
===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=== | ||
+ | <syntaxhighlight lang="ahk"> | ||
+ | #SingleInstance Force | ||
+ | Run, G:\Indies-Light Gun\BOLD\Balloon of the Living Dead.exe | ||
+ | |||
+ | $Esc:: | ||
+ | Process,Close,Ballon_of_the_Living_Dead.exe | ||
+ | Run,taskkill /im "Balloon of the Living Dead.exe" /F | ||
+ | sleep, 500 | ||
+ | ExitApp | ||
+ | </syntaxhighlight> | ||
{{Controls | {{Controls |
Revision as of 06:01, 13 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
#SingleInstance Force
Run, G:\Indies-Light Gun\BOLD\Balloon of the Living Dead.exe
$Esc::
Process,Close,Ballon_of_the_Living_Dead.exe
Run,taskkill /im "Balloon of the Living Dead.exe" /F
sleep, 500
ExitApp