home *** CD-ROM | disk | FTP | other *** search
/ PC Play: Horror & Adventure / HORROR.ISO / menu.bat < prev    next >
Encoding:
DOS Batch File  |  1997-02-18  |  1.7 KB  |  98 lines

  1. @echo off
  2. cls
  3. echo Looking for CD-ROM drive...
  4. :DDISK
  5.    IF NOT EXIST D:\Menu.bat GOTO EDISK
  6.    D:
  7.    goto MENU
  8. :EDISK
  9.    IF NOT EXIST E:\Menu.bat GOTO FDISK
  10.    E:
  11.    goto MENU
  12. :FDISK
  13.    IF NOT EXIST F:\Menu.bat GOTO GDISK
  14.    F:
  15.    goto MENU
  16. :GDISK
  17.    IF NOT EXIST G:\Menu.bat GOTO HDISK
  18.    G:
  19.    goto MENU
  20. :HDISK
  21.    IF NOT EXIST H:\Menu.bat GOTO IDISK
  22.    H:
  23.    goto MENU
  24. :IDISK
  25.    IF NOT EXIST I:\Menu.bat GOTO JDISK
  26.    I:
  27.    goto MENU
  28. :JDISK
  29.    IF NOT EXIST J:\Menu.bat GOTO KDISK
  30.    J:
  31.    goto MENU
  32. :KDISK
  33.    IF NOT EXIST K:\Menu.bat GOTO LDISK
  34.    K:
  35.    goto MENU
  36. :LDISK
  37.    IF NOT EXIST L:\Menu.bat GOTO MENU
  38.    L:
  39. :MENU
  40. cd \
  41. cd Install
  42. cls
  43. echo.
  44. echo          ╔═════════════════════════════════════════╗
  45. echo          ║           PC PLAY DOS Installer         ║
  46. echo          ╚═════════════════════════════════════════╝
  47. echo.
  48. echo    ╔════════════════════════════════════════════════════╗
  49. echo    ║  Press the letter of the game you wish to install  ║
  50. echo    ╚════════════════════════════════════════════════════╝
  51. echo.
  52. echo a. Scorcher
  53. echo b. Tomb Raider
  54. echo c. Alien Rampage
  55. echo d. Normality
  56. echo e. SkyNet
  57. echo f. Alien Trilogy
  58. echo.    
  59. echo x. Exit
  60. echo.                           
  61. echo.
  62. choice /c:abcdefghijklmnopqrstuvwxyz /n
  63. cls
  64.  
  65. if errorlevel 7 goto end
  66. if errorlevel 6 goto inst6
  67. if errorlevel 5 goto inst5
  68. if errorlevel 4 goto inst4
  69. if errorlevel 3 goto inst3
  70. if errorlevel 2 goto inst2
  71. if errorlevel 1 goto inst1
  72.  
  73. :inst1
  74. Scorcher.bat
  75. goto end
  76.  
  77. :inst2
  78. Tombraid.bat
  79. goto end
  80.  
  81. :inst3
  82. Rampage.bat
  83. goto end
  84.  
  85. :inst4
  86. Normal.bat
  87. goto end
  88.  
  89. :inst5
  90. Skynet.bat
  91. goto end
  92.  
  93. :inst6
  94. Alien.bat
  95. goto end
  96.  
  97. :end
  98.