home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hráč 1996 December
/
Hrac_07_1996-12_cd.bin
/
demos
/
crusad
/
read1st.bat
< prev
next >
Wrap
DOS Batch File
|
1996-10-22
|
371b
|
23 lines
@echo off
:ReadYes
type readme.txt | more
choice Would you like to view the ReadMe.Txt again
if errorlevel 2 goto ReadNo
if errorlevel 1 goto ReadYes
:ReadNo
choice Would you like to run the Crusader: No Regret Demo
if errorlevel 2 goto PlayNo
if errorlevel 1 goto PlayYes
:PlayYes
regret
goto end
:PlayNo
echo Maybe next time...
goto end
:end