home *** CD-ROM | disk | FTP | other *** search
/ Groovy Bytes: Behind the Moon / groovybytes.iso / GROOVY / DEMOS / MISC_DEM / KOSTO.ZIP / DEMO.BAT < prev    next >
Encoding:
DOS Batch File  |  1995-01-21  |  230 b   |  21 lines

  1. @echo off
  2. cls
  3. echo.
  4. echo.
  5. echo Do You Have a GUS [Y/N]
  6. echo.
  7. choice /C:yn
  8. if errorlevel 2 goto nope
  9. if errorlevel 1 goto yep
  10.  
  11. :nope
  12. kostomob.exe
  13. goto end
  14.  
  15. :yep
  16. boomgus.exe mtbb.mod kostomob.exe
  17. goto end
  18.  
  19. :end
  20.  
  21.