Difference between revisions of "Aliens Armageddon"

From Sinden Lightgun
Jump to navigation Jump to search
(Created page with " {{infobox |title = Aliens: Armageddon |logo = Aliens-armageddon-logo.png |category = Arcade game |download = |license = Commercial |release = 2014 |type = Rail shooter |deve...")
 
 
(3 intermediate revisions by 2 users not shown)
Line 12: Line 12:
|titleshot = Aliens-armageddon-title.png
|titleshot = Aliens-armageddon-title.png
|gameplayshot = Aliens-armageddon-Gameplay.webp
|gameplayshot = Aliens-armageddon-Gameplay.webp
|gamename = Aliens Armageddon
|note = Requires TeknoParrot Patreon
|note = Requires TeknoParrot Patreon
}}
}}
Line 18: Line 19:




=== 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, D:\nomousy\nomousy.exe /hide
Run, D:\Teknoparrot\TeknoParrotUi.exe --profile=AliensArmageddon.xml

~Esc::
Process,Close,TeknoParrotUi.exe
Run,taskkill /im "TeknoParrotUi.exe" /F
Run, D:\nomousy\nomousy.exe
sleep, 500
ExitApp
return
</syntaxhighlight>
[[Category:Arcade Games]]
[[Category:Arcade Games]]
[[Category: PC_Based_Arcade_Games]]

Latest revision as of 19:36, 2 February 2023



Arcade game
License: Commercial
Game info
Developer: Play Mechanix, Raw Thrills
Released: 2014
Players: 2 Player
Type: Rail shooter
Aliens-armageddon-title.png
Aliens-armageddon-Gameplay.webp
Note: Requires TeknoParrot Patreon

In Aliens™ Armageddon a Xenomorph plague is unleashed on Earth causing apocalyptic devastation. Mankind’s only hope for survival is to fight their way to a deep space cargo ship and leave the Earth behind. Aliens features a 55 inch LED cabinet, enhanced gun system, eye catching Aliens topper and four frantic levels of non-stop shooting action, with players battling an onslaught of all new alien enemies.


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, D:\nomousy\nomousy.exe /hide
Run, D:\Teknoparrot\TeknoParrotUi.exe --profile=AliensArmageddon.xml

~Esc::
    Process,Close,TeknoParrotUi.exe
    Run,taskkill /im "TeknoParrotUi.exe" /F
    Run, D:\nomousy\nomousy.exe
    sleep, 500
    ExitApp
return