Epoch

From Sinden Lightgun
Jump to navigation Jump to search



Windows Game
Hardware: Steam
Download: Steam
License: Commercial
Game info
Developer: Uppercut Games Pty Ltd
Released: 5 Jun, 2014
Players: 1 Player
Type: Rail shooter
EPOCH-title.jpg
EPOCH-gameplay.jpg
Note: Reshade settings


Get ready for post-apocalyptic robot combat! Follow the story of EPOCH, a guardian robot on a quest to fulfill his primary function in a world blasted by war. Use your quick reflexes, combat skills and tactical thinking to dodge, trick and blast the hordes of other robots in your way. Dodge, crouch and leap to avoid enemy fire. Spray bullets, fire Missiles, launch devastating Countermeasures, and activate powerful Boosters. Hone your skills in the multi-level Campaign, and then put them to the test in the endless Arena mode.


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/270510

RButton::R  	    ;Reload
MButton::Q   	    ;Missiles
Space::E		    ;Counter
1::F			    ;Booster
Left::A      	    ;Move LEFT
Right::D            ;Move RIGHT
Up::W               ;Move UP
Down::S             ;Move DOWN

$ESC::				    
    Process,Close,UDK.exe
    Run,taskkill /im "UDK.exe" /F
    sleep, 500
    ExitApp
return