home *** CD-ROM | disk | FTP | other *** search
/ PowerHits - SciFi / POWERHITS_SCIFI.iso / scifi.bat < prev    next >
DOS Batch File  |  1994-10-06  |  2KB  |  84 lines

  1. :BEGINNING
  2. ECHO OFF
  3. CLS
  4. ECHO            Please select the game you would like to play:
  5. ECHO                    F1 = PROPHECY 
  6. ECHO                    F2 = FATMAN 
  7. ECHO                    F3 = DEATH TRACK 
  8. ECHO                    F4 = CIRCUIT'S EDGE 
  9. ECHO                    F5 = MINES OF TITAN 
  10. ECHO                    F6 = QUIT
  11. ECHO            Enter the number of the game you wish to play.        
  12. :REPLY
  13. REPLY
  14. IF ERRORLEVEL 64 GOTO QUIT1
  15. IF ERRORLEVEL 63 GOTO MINES
  16. IF ERRORLEVEL 62 GOTO CIRCUIT
  17. IF ERRORLEVEL 61 GOTO DEATH
  18. IF ERRORLEVEL 60 GOTO FATMAN
  19. IF ERRORLEVEL 59 GOTO PROPHECY
  20. GOTO REPLY
  21.  
  22.  
  23. :PROPHECY
  24. REM ** This is for 386 computers and below
  25. REM ATSLOW /T????
  26. REM ** This is for 486 computers and higher
  27. REM ATSLOW /T???? /Z
  28. CD PROPHECY
  29. PROPHECY
  30. REM CD..
  31. REM ATSLOW /R
  32. GOTO QUIT
  33.  
  34.  
  35. :FATMAN
  36. REM ** This is for 386 computers and below
  37. REM ATSLOW /T????
  38. REM ** This is for 486 computers and higher
  39. REM ATSLOW /T???? /Z
  40. CD FATMAN
  41. FATMAN
  42. REM CD..
  43. REM ATSLOW /R
  44. GOTO QUIT
  45.  
  46. :DEATH
  47. REM ** This is for 386 computers and below
  48. REM ATSLOW /T????
  49. REM ** This is for 486 computers and higher
  50. REM ATSLOW /T???? /Z
  51. CD DTRACK
  52. DTRACK
  53. REM CD..
  54. REM ATSLOW /R
  55. GOTO QUIT
  56.  
  57. :CIRCUIT
  58. REM ** This is for 386 computers and below
  59. REM ATSLOW /T????
  60. REM ** This is for 486 computers and higher
  61. REM ATSLOW /T???? /Z
  62. CD CIRCUIT
  63. EDGE
  64. REM CD..
  65. REM ATSLOW /R
  66. GOTO QUIT
  67.  
  68. :MINES
  69. REM ** This is for 386 computers and below  
  70. REM ATSLOW /T????
  71. REM ** This is for 486 computers and higher
  72. REM ATSLOW /T???? /Z
  73. CD TITAN
  74. TITAN
  75. REM CD..
  76. REM ATSLOW /R
  77. GOTO QUIT
  78.  
  79. :QUIT
  80. CD..
  81.  
  82. :QUIT1
  83.  
  84.