I wrote it like 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, Shell.exe
Run, C:\Sega\shell\DemulShooter.exe -target=windows -rom=PVZ
RButton::1
MButton::2
Escape::
Process,Close,DemulShooter.exe
Run,taskkill /im "DemulShooter.exe" /F
Process,Close,Shell.exe
Run,taskkill /im "Shell.exe" /F
ExitApp
return