Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- MEmu := "PCSX2"
- MEmuV := "1.7.0"
- MURL := ["http://pcsx2.net/"]
- MAuthor := ["djvj, Tancrede654"]
- MVersion := "2.2.1"
- MCRC := ""
- iCRC := ""
- MID := ""
- MSystem := ["Sony PlayStation 2"]
- ;----------------------------------------------------------------------------
- ; Notes:
- ; Quick & dirty module for PCSX2 Nightly, made from 1.6.0 version
- ;----------------------------------------------------------------------------
- StartModule()
- BezelGUI()
- FadeInStart()
- primaryExe := new Emulator(emuPath . "\" . executable)
- emuWindow := new Window(new WindowTitle("PCSX2","Qt672QWindowIcon"))
- Fullscreen := moduleIni.Read("Settings", "Fullscreen","false")
- NoGUI := moduleIni.Read("Settings", "NoGUI","false")
- FastBoot := moduleIni.Read("Settings", "FastBoot","false")
- Fullscreen := If Fullscreen = "true" ? " -fullscreen" : ""
- NoGUI := If NoGUI = "true" ? " -batch -nogui" : ""
- FastBoot := If FastBoot = "true" ? " -fastboot" : " -slowboot"
- primaryExe.Run(" """ . romPath . "\" . romName . romExtension . """" . Fullscreen . FastBoot . NoGUI)
- FadeInExit()
- primaryExe.Process("WaitClose")
- 7zCleanUp()
- BezelExit()
- FadeOutExit()
- ExitModule()
- CloseProcess:
- FadeOutStart()
- emuWindow.Close()
- Return
Advertisement
Add Comment
Please, Sign In to add comment