home *** CD-ROM | disk | FTP | other *** search
/ Classic Collection - Adventure & Fantasy / CLASS211.bin / mic10011 / swtdemo.bat < prev    next >
Encoding:
DOS Batch File  |  1993-08-16  |  717 b   |  41 lines

  1. @echo off
  2. :start
  3. cls
  4. echo.
  5. echo     Follow the instructions on the screen to configure
  6. echo     the demo for your system.  
  7. echo.
  8. echo.
  9. echo     1. Interactive demo with sound blaster card
  10. echo     2. Interactive demo no sound
  11. echo     3. Quit
  12. echo.
  13. echo Please enter the number for your choice:
  14. query
  15. if errorlevel == 3 goto exit
  16. if errorlevel == 2 goto nosound
  17. if errorlevel == 1 goto sound
  18.  
  19. echo Unavailable choice.
  20. goto start
  21.  
  22. REM run demo with sound
  23. :sound
  24. echo.
  25. echo.
  26. echo Loading interactive demo
  27. TRAV.EXE 
  28. goto exit
  29.  
  30. REM run demo with sound
  31. :nosound
  32. echo.
  33. echo.
  34. echo Loading interactive demo
  35. TRAV.EXE 1
  36. goto exit
  37.  
  38. :exit
  39. echo.
  40. echo Returning to the demonstration system
  41.