home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World Traveler
/
WORLD_TRAV2.ISO
/
show2
/
show2.bat
< prev
next >
Wrap
DOS Batch File
|
1994-01-21
|
3KB
|
152 lines
@echo off
break=ON
cd\show2
univesa
:TOP
cls
echo.
echo ---- World Traveler Series 1.1 - North America & New Zealand ----
echo.
echo 1. New Zealand
echo 2. US - Parks
echo 3. US - Cities
echo 4. Vacation Spots
echo 5. US - Miscellaneous
echo 6. Fully automated slide show of entire CD
echo.
echo X. Exit
echo.
ask_wait "Your choice, please? " 123456xX 180 X
echo.
if errorlevel 7 goto End
if errorlevel 6 goto FullAuto
if errorlevel 5 goto USmisc
if errorlevel 4 goto Vac
if errorlevel 3 goto UScity
if errorlevel 2 goto USpark
if errorlevel 1 goto NZ
goto End
:FullAuto
call fullauto.bat
goto TOP
:NZ
call nz
goto TOP
:USpark
cls
echo.
echo --- US - Parks ---
echo.
echo 1. Bryce Canyon, Utah
echo 2. Monument Valley
echo 3. Teddy Roosevelt National Park
echo 4. Zion National Park
echo.
echo X. Exit to main menu
echo.
ask_wait "Your choice, please? " 1234xX 180 X
echo.
if errorlevel 5 goto TOP
if errorlevel 4 goto Zion
if errorlevel 3 goto TRNP
if errorlevel 2 goto MoVal
if errorlevel 1 goto Bryce
goto TOP
:Bryce
call bry
goto TOP
:MoVal
call monv
goto TOP
:TRNP
call trnp
goto TOP
:Zion
call zion
goto TOP
:UScity
cls
echo.
echo --- US - Cities ---
echo.
echo 1. Washington, DC - DC Sights
echo 2. Washington, DC - Air & Space Museum
echo 3. Washington, DC - Smithsonian Castle
echo 4. New York City
echo.
echo X. Exit to main menu
echo.
ask_wait "Your choice, please? " 1234xX 180 X
echo.
if errorlevel 5 goto TOP
if errorlevel 4 goto NYC
if errorlevel 3 goto Smiths
if errorlevel 2 goto ASM
if errorlevel 1 goto DC
goto TOP
:DC
call wa
goto TOP
:ASM
call asm
goto TOP
:Smiths
call smt
goto TOP
:NYC
call nyc
goto top
:Vac
cls
echo.
echo --- Vacation Spots ---
echo.
echo 1. Cancun
echo 2. Hawaii
echo.
echo X. Exit to main menu
echo.
ask_wait "Your choice, please? " 12xX 180 X
echo.
if errorlevel 3 goto TOP
if errorlevel 2 goto Hawaii
if errorlevel 1 goto Cancun
goto TOP
:Cancun
call canc
goto TOP
:Hawaii
call haw
goto TOP
:USmisc
cls
echo.
echo --- US - Miscellaneous ---
echo.
echo 1. Car Shows
echo 2. Fire Trucks
echo 3. Sussex County Air Show
echo.
echo X. Exit to main menu
echo.
ask_wait "Your choice, please? " 123xX 180 X
echo.
if errorlevel 4 goto TOP
if errorlevel 3 goto Susair
if errorlevel 2 goto FT
if errorlevel 1 goto Car
goto TOP
:Car
call car
goto TOP
:FT
call fire
goto TOP
:Susair
call sus
goto TOP
:End
echo.
echo.
cd\