that is alot of help, just cant compile :S ; This script will take a MAME command line arguments (the rom name, rom path, etc.) ; and check to see if it needs to be run in a special version of MAME. If so, it will ; launch the rom in that version and wait for MAME to exit. At that point, it ; will kill the script. #NoTrayIcon #SingleInstance ignore MAME_Analog_Path := "C:\Emulators\ZiNc\ZiNc.exe" MAME_Path := "C:\Emulators\Mame32\mame.exe" Loop, %0%; For each parameter: { if A_Index = 1 { RomName := %A_Index% } else if A_Index > 1 { param := %A_Index%; Fetch the contents of the variable whose name is contained in A_Index. Arguments = %Arguments% %param% } } ; Run in MAME Analog+? Loop, read, C:\Emulators\Mame32\zinc.txt { If RomName = %A_LoopReadLine% { run %MAME_Analog_Path% %RomName% %Arguments%,,,MAME_PID WinWait, ahk_pid %MAME_PID% WinWaitClose;Wait until MAME is exited ExitApp } } ; Run in standard MAME run %MAME_Path% %RomName% %Arguments%,,,MAME_PID WinWait, ahk_pid %MAME_PID% WinWaitClose;Wait until MAME is exited thats what it will be