Emulator Project Tempest not exiting properly - force task kill?

vaderag

New member
RL Member
I have an issue with Project Tempest where is is not exiting properly

The RL exit command is sent, it tries to exit, but the emulator stays on screen, now not full screen and somewhat dead, and the the only way to get Rocket Launcher to actually realise things are done is to actually force kill the task through Task Manager

Is there a way to send a kill command from RL after say a 3 second delay?
I guess this can be done by editing the module, but no idea what the correct way of doing this is

Thanks
 

vaderag

New member
RL Member
I've actually just solved this myself.

I added the following line to the module in the CloseProcess function

CloseProcess:
FadeOutStart()
emuPrimaryWindow.Close()
TimerUtils.Sleep(200)
Run, wmic process where name='PT.exe' delete
Return

NB. initially tried Taskkill and I got access denied
 
Top