home *** CD-ROM | disk | FTP | other *** search
/ PC Action 1997 October / PCA1097A.ISO / tools / nascar / _nascar.exe / Calendar.bat next >
DOS Batch File  |  1997-08-13  |  1KB  |  48 lines

  1. @ECHO OFF
  2.  
  3. :menu
  4. cls
  5. echo    NASCAR Racing 2 Fantasy Tracks
  6. echo    ==============================
  7. echo.
  8. echo    This batch file will rename your existing CALENDAR
  9. echo    file to CALENDAR.BAK, and then rename the new
  10. echo    Fantasy Tracks CALENDAR.FAN to CALENDAR.
  11. echo.
  12. echo    Continue?
  13. choice /c:ynQ
  14. if errorlevel 3 goto end
  15. if errorlevel 2 goto end
  16. if errorlevel 1 goto yup
  17. echo CHOICE missing
  18. goto end
  19.  
  20. :yup
  21. rename calendar calendar.bak
  22. rename calendar.fan calendar
  23. echo.
  24. echo    Your new CALENDAR file adds the Bull Run and Red Rock
  25. echo    tracks to the end of your racing season.
  26. echo.
  27. echo    Would you like to view the README file?
  28. echo.
  29. choice /c:ynQ
  30. if errorlevel 3 goto end
  31. if errorlevel 2 goto end
  32. if errorlevel 1 goto read
  33. echo CHOICE missing
  34. goto end
  35.  
  36. :read
  37. type readme.1st | more
  38. goto end
  39.  
  40. :end
  41. echo.
  42. echo.
  43. echo    Thank you for downloading the NASCAR Racing 2 Fantasy
  44. echo    Tracks demo!  Look for the release versions of these
  45. echo    tracks in the NASCAR Grand National Series Expansion
  46. echo    pack, available in November 1997 from Papyrus Design
  47. echo    Group.
  48. echo.