home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Action 1997 October
/
PCA1097A.ISO
/
tools
/
nascar
/
_nascar.exe
/
Calendar.bat
next >
Wrap
DOS Batch File
|
1997-08-13
|
1KB
|
48 lines
@ECHO OFF
:menu
cls
echo NASCAR Racing 2 Fantasy Tracks
echo ==============================
echo.
echo This batch file will rename your existing CALENDAR
echo file to CALENDAR.BAK, and then rename the new
echo Fantasy Tracks CALENDAR.FAN to CALENDAR.
echo.
echo Continue?
choice /c:ynQ
if errorlevel 3 goto end
if errorlevel 2 goto end
if errorlevel 1 goto yup
echo CHOICE missing
goto end
:yup
rename calendar calendar.bak
rename calendar.fan calendar
echo.
echo Your new CALENDAR file adds the Bull Run and Red Rock
echo tracks to the end of your racing season.
echo.
echo Would you like to view the README file?
echo.
choice /c:ynQ
if errorlevel 3 goto end
if errorlevel 2 goto end
if errorlevel 1 goto read
echo CHOICE missing
goto end
:read
type readme.1st | more
goto end
:end
echo.
echo.
echo Thank you for downloading the NASCAR Racing 2 Fantasy
echo Tracks demo! Look for the release versions of these
echo tracks in the NASCAR Grand National Series Expansion
echo pack, available in November 1997 from Papyrus Design
echo Group.
echo.