home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 330.img / TANKATTK.ZIP / RUNME.BAT < prev   
DOS Batch File  |  1990-10-28  |  588b  |  35 lines

  1. echo off
  2. cls
  3. echo -                        TANK ATTACK
  4. echo -
  5. echo -                   Choose Graphic Adaptor
  6. echo -
  7. echo -
  8. echo -                         (F1) CGA
  9. echo -                         (F2) EGA
  10. echo -                         (F3) QUIT
  11. echo -
  12. echo -
  13. echo -
  14. :reply
  15. reply.com
  16. if errorlevel 61 goto end
  17. if errorlevel 60 goto ega
  18. if errorlevel 59 goto cga
  19. goto reply
  20. :cga
  21. type fileinfo.txt
  22. pause >nul
  23. cd cga
  24. tank.exe
  25. goto :end
  26. :ega
  27. type fileinfo.txt
  28. pause >nul
  29. cd ega
  30. tank.exe
  31. goto :end
  32. :end
  33. cd..
  34. echo See Ya Later! From the guys of Public Enemy...
  35.