home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Loisirs 26
/
CDL26.iso
/
START.BAT
< prev
next >
Wrap
DOS Batch File
|
1997-02-03
|
909b
|
56 lines
@echo off
echo
:deb
Cls
echo
echo
echo ╔═════════════╗
echo ║ TRILOGY ║
echo ╚═════════════╝
echo
echo (C) Copyright Silmarils 1995
echo
echo
echo Choisissez un jeu à lancer
echo
echo (1) ISHAR 1
echo (2) ISHAR 2
echo (3) ISHAR 3
echo
echo Bonus
echo
echo (4) TARGHAN
echo
choice /C1234 /N "Votre Choix : "
cls
IF ERRORLEVEL 4 GOTO choix4
IF ERRORLEVEL 3 GOTO choix3
IF ERRORLEVEL 2 GOTO choix2
IF ERRORLEVEL 1 GOTO choix1
goto deb
:choix1
echo Patientez, Chargement de ISHAR Legend of the Fortress...
CD \ISHAR1
START.EXE
goto fin
:choix2
echo Patientez, Chargement de ISHAR2 Messengers of Doom...
CD \ISHAR2
START.EXE
goto fin
:choix3
echo Patientez, Chargement de ISHAR3 The Seven Gates of Infinity...
CD \ISHAR3
START.EXE
goto fin
:choix4
echo Démarrez TARGHAN à partir de votre DISQUE DUR.
cd c:\targhan
goto fin
:fin