Difference between revisions of "Aliens Armageddon"
Jump to navigation
Jump to search
Line 18: | Line 18: | ||
+ | === 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:\Teknoparrot\TeknoParrotUi.exe --profile=AliensArmageddon.xml | ||
+ | |||
+ | ~Esc:: | ||
+ | Process,Close,TeknoParrotUi.exe | ||
+ | Run,taskkill /im "TeknoParrotUi.exe" /F | ||
+ | sleep, 500 | ||
+ | ExitApp | ||
+ | return | ||
+ | </syntaxhighlight> | ||
[[Category:Arcade Games]] | [[Category:Arcade Games]] | ||
[[Category: PC_Based_Arcade_Games]] | [[Category: PC_Based_Arcade_Games]] |
Revision as of 23:08, 19 January 2023
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:\Teknoparrot\TeknoParrotUi.exe --profile=AliensArmageddon.xml
~Esc::
Process,Close,TeknoParrotUi.exe
Run,taskkill /im "TeknoParrotUi.exe" /F
sleep, 500
ExitApp
return