home *** CD-ROM | disk | FTP | other *** search
/ Doom Magazine 1 / Doom_magazine_01.bin / go.bat < prev    next >
DOS Batch File  |  1994-07-08  |  460b  |  40 lines

  1. @echo off
  2. cls
  3. echo Loading.....
  4. menu
  5. if errorlevel 100 goto fatal
  6. if errorlevel 27 goto stop
  7. if errorlevel 9 goto 9
  8. if errorlevel 8 goto 8
  9. if errorlevel 7 goto 7
  10. if errorlevel 6 goto 6
  11. if errorlevel 5 goto 5
  12. if errorlevel 4 goto 4
  13. if errorlevel 3 goto 3
  14. if errorlevel 2 goto 2
  15. if errorlevel 1 goto 1
  16. cls
  17. type readme.txt
  18. goto stop
  19. :1
  20. 1
  21. :2
  22. 2
  23. :3
  24. 3
  25. :4
  26. 4
  27. :5
  28. 5
  29. :6
  30. 6
  31. :7
  32. 7
  33. :8
  34. 8
  35. :9
  36. 9
  37. :fatal
  38. echo Fatal error in Menu program
  39. :stop
  40.