home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 3.15 / 1998-06_Disc_3.15.iso / burnout / burnout.exe / INSTALL.BAT < prev    next >
DOS Batch File  |  1998-03-28  |  601b  |  38 lines

  1. @echo off
  2. cls
  3. echo.
  4. echo Burnout: Championship Drag Racing (Demo)
  5. echo.
  6. echo The Demo will be installed in the current directory.
  7. echo.
  8. choice Continue installation?
  9. if errorlevel 2 goto NOINSTALL
  10.  
  11. pkunzip -d brntdemo.zip
  12. cd snddrv
  13. setsound
  14. cd..
  15.  
  16. echo.
  17. echo Installation complete!
  18. echo See the README.TXT file for instructions.
  19. echo.
  20. echo To run the demo type:
  21. echo.
  22. echo BURNOUT for the 3Dfx accelerated version (3Dfx hardware required)
  23. echo.
  24. echo or,
  25. echo.
  26. echo BURNOUTS for the software version.
  27. goto END
  28.  
  29.  
  30. :NOINSTALL
  31. echo.
  32. echo Installation canceled.
  33.  
  34.  
  35. :END
  36.  
  37.  
  38.