Sometime ago, I took an ahk script that was made by some user from this forum, to load wmmt games with the "old" cxbx fork
I adapted it to run the teknoparrot versions, not using UI
Maybe there is a better way to do it
Here is what I have:
CXBXPath = "H:\Teknoparrot\Extras\Launchers\Wangan Midnight Maximum Tune 2 [Japan, GDX0015, 2005.02.18].bat"
XBEPath = "H:\Teknoparrot\Games\WMMT2j\V322.xbe"
Run, YACardEmu.exe
Run, %CXBXPath% /load "%XBEPath%"
Escape::
Process,Close,YACardEmu.exe
Run,taskkill im YACardEmu.exe F
ExitApp
return
"Wangan Midnight Maximum Tune 2 [Japan, GDX0015, 2005.02.18].bat" only contains the command line options to run the game. In this example would be: H:\Teknoparrot\teknoparrotUi --profile=WMMT2j.xml --startMinimized
What I want is:
- Run YAcardEmu to provide card saving support
- Run the game from Teknoparrot command line (not using UI)
- End YAcardEmu, so I don't have to do it manually (supossedly, the line "Run,taskkill im YACardEmu.exe F" is to do that, but it does not work for some reason
I'm not an ahk expert, so maybe somebody can find a way to do this
Thanks in advance