home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Collector 11 - Disc 1
/
ZGIDEMO.bin
/
CYBERDOS.BAT
< prev
Wrap
DOS Batch File
|
1995-07-13
|
3KB
|
150 lines
@echo off
:start
cls
echo.
echo ╔══════════════════════════════════════════╗
echo ║ Bienvenue sur PC Collector N°11 CD n°1 ║
echo ╚══════════════════════════════════════════╝
echo.
echo.
echo.
echo 1 - Lancer PC Collector sous MS-Dos
echo.
echo.
echo 2 - Sortir de ce menu
echo.
echo.
echo.
echo.
choice /C:123 /N /S Votre choix :
if errorlevel 2 goto end
if errorlevel 1 goto dos
goto end
:dos
cls
echo.
echo ╔════════════════════════════╗
echo ║ PC Collector N°11 ║
echo ╚════════════════════════════╝
echo.
echo * Page 1/2 *
echo.
echo 0 - Le Retour...
echo.
echo 1 - Custer's Last Command
echo 2 - Dragons in the Mist
echo 3 - Earth 2140
echo 4 - Mario Bros VGA
echo 5 - Nebula Fighter
echo 6 - Settlers 2 Gold Edition
echo 7 - Steel Panthers 3
echo 8 - The Last Express
echo.
echo 9 - La Suite...
echo.
echo.
choice /C:0123456789 /N /S Votre choix :
if errorlevel 10 goto dos2
if errorlevel 9 goto thelast
if errorlevel 8 goto steel
if errorlevel 7 goto settlers
if errorlevel 6 goto nebula
if errorlevel 5 goto mario
if errorlevel 4 goto earth
if errorlevel 3 goto dragons
if errorlevel 2 goto custer
if errorlevel 1 goto start
goto end
:custer
cd data
cd commande
custer
:dragons
cd data
cd commande
dragons
:earth
cd data
cd commande
earth
:mario
cd data
cd commande
mario
:nebula
cd data
cd commande
nebula
:settlers
cd data
cd commande
settlers
:steel
cd data
cd commande
steel
:thelast
cd data
cd commande
thelastd
:dos2
cls
echo.
echo ╔════════════════════════════╗
echo ║ PC Collector N°11 ║
echo ╚════════════════════════════╝
echo.
echo * Page 2/2 *
echo.
echo 0 - Le Retour...
echo.
echo 1 - Wooden Ships & Iron Men
echo 2 - X-Car (3DFX)
echo 3 - X-Men Children of the Atom
echo.
echo 4 - Sortir de ce menu
echo.
echo.
choice /C:01234 /N /S Votre choix :
if errorlevel 5 goto end
if errorlevel 4 goto xmen
if errorlevel 3 goto xcar
if errorlevel 2 goto wooden
if errorlevel 1 goto dos
goto end
:wooden
cd data
cd commande
wooden
:xcar
cd data
cd commande
xcar
:xmen
cd data
cd commande
xmen
:end
cd\
cls
echo.
echo Merci de votre visite sur les CD-Roms de PC Collector n°11. A bientôt !
echo.
Pause
cls