home *** CD-ROM | disk | FTP | other *** search
/ Computerspiele Selbermachen / computerspieleselbermachen.iso / game / gb.bat < prev    next >
DOS Batch File  |  1993-11-27  |  335b  |  25 lines

  1. echo off
  2. :MAIN
  3. gamebild
  4. if errorlevel 3 goto TPAINT
  5. if errorlevel 2 goto SOUNDS
  6. if errorlevel 1 goto TPAINT
  7. goto END
  8. :TPAINT
  9. setmode %1
  10. cls
  11. ECHO Loading TurboPaint...
  12. :RUNPROGRAM
  13. tp
  14. if ERRORLEVEL 37 GOTO NOMEM
  15. if ERRORLEVEL 15 GOTO RUNPROGRAM
  16. goto MAIN
  17. :NOMEM
  18. keypress
  19. goto MAIN
  20. :SOUNDS
  21. sg
  22. goto MAIN
  23. :END
  24. GBEND
  25.