home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nederland Interaktief Kinderen
/
NLeduca.bin
/
NLEDUCA
/
GUUS
/
SPEL.BAT
< prev
next >
Wrap
DOS Batch File
|
1996-04-03
|
877b
|
48 lines
@echo off
cls
echo ╔══════════════════════════════════╗
echo ║ Welk spel wilt u spelen ? ║
echo ║ ║
echo ║ 1. Henrietta's magische spelspel ║
echo ║ 2. Henrietta gaat voor goud ║
echo ║ 3. LetterPletter ║
echo ║ 4. Plus+ ║
echo ║ 5. stoppen ║
echo ║ ║
echo ║ Maak u keuze uit 1,2,3,4 of 5 ║
echo ╚══════════════════════════════════╝
choice /c:12345 /n
if errorlevel 5 goto stop
if errorlevel 4 goto plus
if errorlevel 3 goto plet
if errorlevel 2 goto goud
if errorlevel 1 goto spel
goto end
:plus
c:
cd\hallowee\plus
caprog
goto end
:plet
c:
cd\hallowee\letter
spellbou
goto end
:goud
c:
cd\hallowee\goud
hhprog
goto end
:spel
c:
cd\hallowee\magi
bosprog
:end
cd\hallowee
spel
:stop