In case you guys need an AHK script to load the game and Demulshooter, adds also a redirect from tab to 9 to load the game menu
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
#SingleInstance force
SetWorkingDir "D:\Arcade\System roms\Sega Ringedge\roms\Elevator Action Invasion\ESGame\Binaries\Win64\"
Run, "D:\Arcade\System roms\Sega Ringedge\roms\Elevator Action Invasion\Demulshooter\DemulShooterX64.exe" -target=unis -rom=eai
sleep, 1000
run, ESGame-Win64-Shipping.exe
sleep,1000
~tab::9
$esc::
WinClose, ahk_exe HCV.exe
Process,Close,ESGame-Win64-Shipping.exe
Run,taskkill /im "DemulShooterX64.exe" /F
Run,taskkill /im "RunMe.exe" /F
Run,taskkill /im "ESGame-Win64-Shipping.exe" /F
ExitApp
return