home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 1995 May / pcw-0595.bin / dosmenu.bat next >
DOS Batch File  |  1995-03-09  |  3KB  |  212 lines

  1. @echo off
  2.  
  3. :start
  4.  
  5. cls
  6. echo                         PCW INTERACTIVE - QUICK DOS MENU
  7. echo"
  8. echo"
  9. echo This Dos menu system is here for readers who don't have (or don't use) Windows.
  10. echo It is  also needed  for some  games that  refuse to  run correctly  from within
  11. echo Windows.
  12. echo"
  13. echo"
  14. echo"
  15. echo"
  16. echo"
  17. echo"
  18. echo"
  19. echo"
  20. echo"
  21. echo"
  22. echo"
  23. echo"
  24. echo"
  25. echo"
  26. echo"
  27. echo Use the cursor keys and Return to select and run an option, or press Escape to
  28. echo return to Dos.  Please don't  try to  run this batch  file from  Windows as it
  29. echo          defeats the whole object and won't work properly anyway.
  30.  
  31. :menu1
  32.  
  33. \system\getopt "Select an option:" Cyberwar "Dark Forces" Discworld Startrek "-- More --"
  34.  
  35. if errorlevel=5 goto menu2
  36. if errorlevel=4 goto startrek
  37. if errorlevel=3 goto disc
  38. if errorlevel=2 goto dark
  39. if errorlevel=1 goto cyber
  40.  
  41. goto exit
  42.  
  43. :menu2
  44.  
  45. \system\getopt "Select an option:" "Laser Lights" "Mah Jongg" "Dr. Riptide" ShadowForce "-- More --"
  46.  
  47. if errorlevel=5 goto menu3
  48. if errorlevel=4 goto shadow
  49. if errorlevel=3 goto riptide
  50. if errorlevel=2 goto mahjongg
  51. if errorlevel=1 goto laslight
  52.  
  53. goto exit
  54.  
  55. :menu3
  56.  
  57. \system\getopt "Select an option:" "Shooting Gallery" "Starmines 2" "Wrath of Earth" "Cover Disk" "-- More --"
  58.  
  59. if errorlevel=5 goto menu1
  60. if errorlevel=4 goto cover
  61. if errorlevel=3 goto wrath
  62. if errorlevel=2 goto star
  63. if errorlevel=1 goto shoot
  64.  
  65. goto exit
  66.  
  67. :cover
  68.  
  69. cls
  70. cd \covdisk
  71. command /c pcw
  72. echo"
  73. echo Press any key to continue...
  74. pause >nul
  75. cd \
  76. dosmenu
  77.  
  78. :cyber
  79.  
  80. cls
  81. cd \demos\cyberwar\install
  82. install
  83. echo"
  84. echo Press any key to continue...
  85. pause >nul
  86. cd \
  87. dosmenu
  88.  
  89. :dark
  90.  
  91. cls
  92. cd \demos\darkfrcs
  93. echo DARK FORCES
  94. echo"
  95. echo Type one of the following, depending on your CD-Rom drive:
  96. echo"
  97. echo  CD D
  98. echo  CD E
  99. echo  CD F
  100. echo  CD G
  101. echo  CD H
  102. echo"
  103. echo Then enter:
  104. echo"
  105. echo  DFDEMO
  106. echo"
  107. goto exit2
  108.  
  109. :disc
  110.  
  111. cls
  112. cd \demos\discwrld
  113. dwb
  114. echo"
  115. echo Press any key to continue...
  116. pause >nul
  117. cd \
  118. dosmenu
  119.  
  120. :startrk
  121.  
  122. cls
  123. cd \demos\startrek\25thanni
  124. install
  125. go to exit2
  126.  
  127. :laslight
  128.  
  129. cls
  130. cd \sharewre\games\laslight
  131. ll
  132. echo"
  133. echo Press any key to continue...
  134. pause >nul
  135. cd \
  136. dosmenu
  137.  
  138. :mahjongg
  139.  
  140. cls
  141. cd \sharewre\games\mahjongg
  142. mahjongg
  143. echo"
  144. echo Press any key to continue...
  145. pause >nul
  146. cd \
  147. dosmenu
  148.  
  149. :riptide
  150.  
  151. cls
  152. cd \sharewre\games\riptide
  153. riptide -pcsound
  154. echo"
  155. echo Press any key to continue...
  156. pause >nul
  157. cd \
  158. dosmenu
  159.  
  160. :shadow
  161.  
  162. cls
  163. cd \sharewre\games\shadow
  164. command /c sforce
  165. echo"
  166. echo Press any key to continue...
  167. pause >nul
  168. cd \
  169. dosmenu
  170.  
  171. :shoot
  172.  
  173. cls
  174. cd \sharewre\games\shootgal
  175. shoot
  176. echo"
  177. echo Press any key to continue...
  178. pause >nul
  179. cd \
  180. dosmenu
  181.  
  182. :wrath
  183.  
  184. cls
  185. cd \sharewre\games\wrath
  186. woe
  187. echo"
  188. echo Press any key to continue...
  189. pause >nul
  190. mode co80
  191. cd \
  192. dosmenu
  193.  
  194. :star
  195.  
  196. cls
  197. cd \sharewre\games\starmine
  198. sm2
  199. echo"
  200. echo Press any key to continue...
  201. pause >nul
  202. cd \
  203. dosmenu
  204.  
  205. :exit
  206.  
  207. cls
  208. echo Goodbye from PCWI...
  209. echo"
  210.  
  211. :exit2
  212.