home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / GAME / XDM / XDSETUPS.EXE / XDM.BAT
DOS Batch File  |  1996-04-17  |  406b  |  40 lines

  1. @echo off
  2. cd sys
  3. break off
  4. cls
  5.  
  6. xdcdcom >nul
  7.  
  8. :FIRST
  9. xdmui 0
  10.  
  11. :DISPATCH
  12. if errorlevel 4 goto ERROR
  13. if errorlevel 3 goto PLAYBACK
  14. if errorlevel 2 goto BATTLE
  15. if errorlevel 1 goto GAME
  16. goto END
  17.  
  18. :GAME
  19. call game
  20. xdmui 1
  21. goto DISPATCH
  22.  
  23. :BATTLE
  24. call game
  25. xdmui 2
  26. goto DISPATCH
  27.  
  28. :PLAYBACK
  29. call game
  30. xdmui 3
  31. goto DISPATCH
  32.  
  33. :ERROR
  34.  
  35. :END
  36. echo .
  37. xdcdcom -u >nul
  38. cd ..
  39. rem cls
  40.