home *** CD-ROM | disk | FTP | other *** search
/ PC Player 1998 February / PCP0298.ISO / START.BAT < prev   
Encoding:
DOS Batch File  |  1997-11-05  |  595 b   |  41 lines

  1. @echo off
  2. cls
  3. echo.
  4. echo  Geben Sie eine Zahl oder einen Buchstaben ein.
  5. echo.
  6. echo  0: Indy 4 auf Festplatte installieren
  7. echo  1: Indy 4 von CD spielen
  8. echo.
  9. echo  E: Ende
  10. echo  R: Readme Datei anzeigen
  11. echo.
  12. echo  Bitte wählen Sie ein Spiel aus.
  13. echo.
  14. choice /N /c:01ER >nul
  15. if errorlevel = 4 goto readme
  16. if errorlevel = 3 goto end
  17. if errorlevel = 2 goto ij4
  18. if errorlevel = 1 goto hdinst
  19.  
  20. :readme
  21. type readme.txt |more
  22. goto end
  23.  
  24. :ij4
  25. cd ij4
  26. ..\add\insti4cd
  27. ..\add\save
  28. atlantis
  29. ..\add\save /q
  30. cd..
  31. goto end
  32.  
  33. :hdinst
  34. cd add
  35. cdcopy
  36. cd..
  37. goto end
  38.  
  39. :end
  40.  
  41.