home *** CD-ROM | disk | FTP | other *** search
/ Classic Collection - Adventure & Fantasy / CLASS211.bin / acc20004 / swtdemo.bat < prev   
Encoding:
DOS Batch File  |  1993-01-25  |  856 b   |  43 lines

  1. @echo off
  2. :start
  3. cls
  4. echo Hit ALT-Q to exit the demo.  If your ball lands within 30 feet of the hole
  5. echo you will see a reverse angle replay of the shot.  To finish playing the hole
  6. echo immediately press P on the keyboard.  This will allow you to continue playing
  7. echo until you sink the ball.
  8. echo.
  9. echo Please choose one of the selections below:
  10. echo.
  11. echo     1. Run Jack Nicklaus Demo
  12. echo     2. Print the Instructions (Via PRINT README.DOC)
  13. echo     3. Quit
  14. echo.
  15. echo     Please enter the number for your choice;
  16. query
  17.  
  18. if errorlevel = 3 goto end
  19. if errorlevel = 2 goto print
  20. if errorlevel = 1 goto run
  21.  
  22. echo Unavailable choice.
  23. pause
  24. goto start
  25. goto end
  26.  
  27. REM Run Golf
  28. :run
  29. cls
  30. GOLF.EXE
  31. goto end
  32.  
  33. REM Print Golf Instructions
  34. :print
  35. cls
  36. echo.
  37. echo Ready printer and
  38. pause
  39. print readme.doc
  40. goto start
  41.  
  42. :end
  43.