home *** CD-ROM | disk | FTP | other *** search
/ World Traveler / WORLD_TRAV2.ISO / show2.bat < prev   
DOS Batch File  |  1994-01-21  |  3KB  |  152 lines

  1. @echo off
  2. break=ON
  3. cd\show2
  4. univesa
  5. :TOP
  6. cls
  7. echo.
  8. echo ---- World Traveler Series 1.1 - North America & New Zealand ----
  9. echo.
  10. echo 1. New Zealand
  11. echo 2. US - Parks
  12. echo 3. US - Cities
  13. echo 4. Vacation Spots
  14. echo 5. US - Miscellaneous
  15. echo 6. Fully automated slide show of entire CD
  16. echo.
  17. echo X. Exit
  18. echo.
  19. ask_wait "Your choice, please? " 123456xX 180 X
  20. echo.
  21. if errorlevel 7 goto End
  22. if errorlevel 6 goto FullAuto
  23. if errorlevel 5 goto USmisc
  24. if errorlevel 4 goto Vac
  25. if errorlevel 3 goto UScity
  26. if errorlevel 2 goto USpark
  27. if errorlevel 1 goto NZ
  28. goto End
  29. :FullAuto
  30. call fullauto.bat
  31. goto TOP
  32. :NZ
  33. call nz
  34. goto TOP
  35. :USpark
  36. cls
  37. echo.
  38. echo --- US - Parks ---
  39. echo.
  40. echo 1. Bryce Canyon, Utah
  41. echo 2. Monument Valley
  42. echo 3. Teddy Roosevelt National Park
  43. echo 4. Zion National Park
  44. echo.
  45. echo X. Exit to main menu
  46. echo.
  47. ask_wait "Your choice, please? " 1234xX 180 X
  48. echo.
  49. if errorlevel 5 goto TOP
  50. if errorlevel 4 goto Zion
  51. if errorlevel 3 goto TRNP
  52. if errorlevel 2 goto MoVal
  53. if errorlevel 1 goto Bryce
  54. goto TOP
  55. :Bryce
  56. call bry
  57. goto TOP
  58. :MoVal
  59. call monv
  60. goto TOP
  61. :TRNP
  62. call trnp
  63. goto TOP
  64. :Zion
  65. call zion
  66. goto TOP
  67. :UScity
  68. cls
  69. echo.
  70. echo --- US - Cities ---
  71. echo.
  72. echo 1. Washington, DC - DC Sights
  73. echo 2. Washington, DC - Air & Space Museum
  74. echo 3. Washington, DC - Smithsonian Castle
  75. echo 4. New York City
  76. echo.
  77. echo X. Exit to main menu
  78. echo.
  79. ask_wait "Your choice, please? " 1234xX 180 X
  80. echo.
  81. if errorlevel 5 goto TOP
  82. if errorlevel 4 goto NYC
  83. if errorlevel 3 goto Smiths
  84. if errorlevel 2 goto ASM
  85. if errorlevel 1 goto DC
  86. goto TOP
  87. :DC
  88. call wa
  89. goto TOP
  90. :ASM
  91. call asm
  92. goto TOP
  93. :Smiths
  94. call smt
  95. goto TOP
  96. :NYC
  97. call nyc
  98. goto top
  99. :Vac
  100. cls
  101. echo.
  102. echo --- Vacation Spots ---
  103. echo.
  104. echo 1. Cancun
  105. echo 2. Hawaii
  106. echo.
  107. echo X. Exit to main menu
  108. echo.
  109. ask_wait "Your choice, please? " 12xX 180 X
  110. echo.
  111. if errorlevel 3 goto TOP
  112. if errorlevel 2 goto Hawaii
  113. if errorlevel 1 goto Cancun
  114. goto TOP
  115. :Cancun
  116. call canc
  117. goto TOP
  118. :Hawaii
  119. call haw
  120. goto TOP
  121. :USmisc
  122. cls
  123. echo.
  124. echo --- US - Miscellaneous ---
  125. echo.
  126. echo 1. Car Shows
  127. echo 2. Fire Trucks
  128. echo 3. Sussex County Air Show
  129. echo.
  130. echo X. Exit to main menu
  131. echo.
  132. ask_wait "Your choice, please? " 123xX 180 X
  133. echo.
  134. if errorlevel 4 goto TOP
  135. if errorlevel 3 goto Susair
  136. if errorlevel 2 goto FT
  137. if errorlevel 1 goto Car
  138. goto TOP
  139. :Car
  140. call car
  141. goto TOP
  142. :FT
  143. call fire
  144. goto TOP
  145. :Susair
  146. call sus
  147. goto TOP
  148. :End
  149. echo.
  150. echo.
  151. cd\
  152.