home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 13 / 1995-12_Disc_13.iso / b&b / runb&b.bat < prev    next >
DOS Batch File  |  1995-10-04  |  3KB  |  62 lines

  1. cls
  2. :menu
  3. echo off
  4. echo            ╔═══════════════════════════════════════════╗
  5. echo            ║             BEAVIS & BUTTHEAD             ║
  6. echo            ║                                           ║
  7. echo            ║              IMPORTANT NOTE!              ║
  8. echo            ║                                           ║
  9. echo            ║  Beavis & Butthead is a WINDOWS '95 game  ║
  10. echo            ║    It will NOT run under Windows 3.1.     ║
  11. echo            ║                                           ║
  12. echo            ║  If you have WINDOWS '95 you may try to   ║
  13. echo            ║  run the game by selecting the first      ║
  14. echo            ║  option below.                            ║
  15. echo            ║                                           ║
  16. echo            ║  If the game won't run from our PC Gamer  ║
  17. echo            ║  CD, you'll need to exit and load into    ║
  18. echo            ║  WINDOWS '95. Select the Windows '95      ║
  19. echo            ║  Note below for more details.             ║
  20. echo            ╚═══════════════════════════════════════════╝
  21. echo. 
  22. echo. 
  23. echo        Select from one of the following options:
  24. echo        1. Run Beavis & Butthead
  25. echo        2. Windows '95 Note
  26. echo        3. E(X)it 
  27. echo. 
  28. echo        Please enter a choice: 1,2,3
  29. choice /c:123x /n
  30. if errorlevel 4 goto end
  31. if errorlevel 3 goto end
  32. if errorlevel 2 goto run
  33. if errorlevel 1 goto vpi
  34.  
  35. :vpi
  36. CD\B&B
  37. CALL BBGAME.EXE
  38. goto end
  39.  
  40. :run
  41. cls          
  42. echo         ╔═════════════════════════════════════════════════════╗
  43. echo         ║                                                     ║
  44. echo         ║        BEAVIS & BUTTHEAD FOR WINDOWS '95            ║
  45. echo         ║                                                     ║
  46. echo         ║  If you're experiencing problems running this       ║
  47. echo         ║  program from our PC Gamer front end, you'll need   ║
  48. echo         ║  to EXIT and load Windows '95.                      ║
  49. echo         ║                                                     ║
  50. echo         ║  From Windows '95, locate the game's executable     ║
  51. echo         ║  file which can be found in the D:\B&B directory,   ║
  52. echo         ║  (where "D" is the letter of your CD-ROM drive.     ║
  53. echo         ║                                                     ║
  54. echo         ║  The name of the file is BBGAME.EXE.                ║
  55. echo         ║                                                     ║
  56. echo         ╚═════════════════════════════════════════════════════╝
  57. echo.
  58. pause
  59. goto menu
  60.  
  61. :end
  62.