I’m unsure of how ahk scripts work in game that aren’t emulators.
When the game starts, I need to press F11 after a 15 second wait.
When I press escape, I need to close:
Bluestacks.exe
Bluestacks.exe (not a typo, there’s two processes listed in task manager for whatever reason)
HD-agent.exe
HD-player.exe
BstkSVC.exe
From my understanding I would create a batch script that looks something like this, but how do I correctly launch it? Setting up an additional application isn’t doing anything.
Sleep, 15000
Send {F11}
Return
$Esc::
{
Process, Close, {{{Bluestacks.exe}}}
Process, Close, {{{Bluestacks.exe}}}
Process, Close, {{{HD-agent.exe}}}
Process, Close, {{{HD-player.exe}}}
Process, Close, {{{BstkSVC.exe}}}
}