Advertisement
djvj

Untitled

Oct 4th, 2011
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. ;----------------------------------------------------------------------------
  2. ; Sony Playstation
  3. ; ePSXe v1.7.0
  4. ; by Shateredsoul/Brolly/djvj
  5. ; 1.1
  6. ;
  7. ; epsxe can't deal with bin/cue dumps with more than one audio track if you load the cue file directly.
  8. ; For these to work you must mount the cue on daemon tools and let epsxe boot the game from there.
  9. ;
  10. ; Extract all your BIOS files to the bios subfolder. Then goto Config->Bios and select the bios you wish to use.
  11. ;
  12. ; Go to Config->Video then choose a plugin. Pete's OpenGL line is preffered
  13. ; Click Configure (under video plugin) and choose fullscreen and set your desired resolution. Video options/results will vary based on the plugin you choose.
  14. ;
  15. ; If you are using images with multiple tracks, set your extension to cue (make sure all your cues are correctly pointing to their tracks).
  16. ; Go to Config->Cdrom->Configure button and select the drive letter associated with your daemon tools virtual drive.
  17. ;
  18. ; TurboButton will only work with DX7 video plugin
  19. ;----------------------------------------------------------------------------
  20.  
  21. ;Turbo key created by Hypnoziz
  22. turboButton = a ;Key mapping for turbo button assignment
  23. turboEnabled = 0 ;Initialize turbo state
  24.  
  25. Hotkey, %turboButton%, turboProcess
  26.  
  27. If ( romExtension = ".cue" ) {
  28. RunWait, %daemonToolsPath% -mount scsi`, 0`, "%romPath%%romName%%romExtension%"
  29. Run, %executable% -nogui, %emuPath%
  30. } Else
  31. Run, %executable% -nogui -loadiso "%romPath%%romName%%romExtension%", %emuPath%
  32.  
  33. Process, WaitClose, %executable%
  34.  
  35. If ( romExtension = ".cue" )
  36. RunWait, %daemonToolsPath% -unmount scsi`, 0
  37.  
  38. ExitApp
  39.  
  40.  
  41. turboProcess:
  42. If (turboEnabled = 0) {
  43. Send, {DELETE}{END}{END}{DELETE}
  44. turboEnabled = 1
  45. } Else {
  46. Send, {DELETE}{END}{DELETE}
  47. turboEnabled = 0
  48. }
  49. Return
  50.  
  51. CloseProcess:
  52. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement