home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 5 / XENIATGM05.ISO / orion / orion.eng < prev    next >
Text File  |  1995-03-12  |  801b  |  37 lines

  1. @echo off
  2. if '%1'=='' goto default
  3.  
  4. if not exist %1:\orion\orion.cd goto error
  5. call demo1 %1
  6. call cer_midi
  7. call cer_digi
  8. cerberus /d%1 %2 %3 %4
  9. call demo2 %1
  10. goto end
  11.  
  12. :default
  13. if not exist d:\orion\orion.cd goto default_error
  14. call demo1
  15. call cer_midi
  16. call cer_digi
  17. cerberus /dD
  18. call demo2
  19. goto end
  20.  
  21. :error
  22. echo.
  23. echo Unable to find the game demo in the ORION directory of the CD.
  24. echo Please ensure the correct CD is present in Drive %1.
  25. echo.
  26. goto end
  27.  
  28. :default_error
  29. echo.
  30. echo Unable to find the game demo in the ORION directory of the CD.
  31. echo Please ensure the correct CD is present in Drive D.
  32. echo If the CD is in a different drive then start the demo by entering
  33. echo ORION drive-letter.
  34. echo For example, enter ORION E if the CD is in drive E.
  35. echo.
  36. :end
  37.