home *** CD-ROM | disk | FTP | other *** search
/ MegaDoom Add-On 3 / MEGADOOM3.iso / dm2wads / startrek / stinstal.bat < prev   
DOS Batch File  |  1995-04-02  |  1KB  |  46 lines

  1. @echo off
  2. echo    ************************************************
  3. echo    *            Startrek NCC-1701D V1.0           *
  4. echo    *     by Kevyn Shellington and Derek Noel      *
  5. echo    *             Installation Batch               *
  6. echo    ************************************************
  7. echo.
  8. echo.
  9. pause
  10. if exist Doom2.wad goto install
  11. echo. I can't find Doom2.wad  !
  12. echo. Startrek.wad MUST be installed in your doom2 directory.
  13. echo.
  14. pause
  15. goto end
  16. :install
  17. echo. Now appending Doom2 sprites to Stargrfx.wad.
  18. echo. This will take a few minutes, and requires just over 4 meg
  19. echo. of Hard Drive space.
  20. echo. Please make sure you have this space available on your Hard Drive.
  21. echo. If not press Control-C now !!!
  22. echo.
  23. pause
  24. if not exist deusf.exe goto no_deusf
  25. deusf -app stargrfx.wad
  26. if not errorlevel 1 goto finish
  27. echo.
  28. echo. ERROR!  There was a problem Appending Stargrfx.wad.
  29. echo. You may not have enough disk space. Please delete all useless databases
  30. echo. wordprocessors and other non-essential programs from your hard drive
  31. echo. and try installing again.  :)
  32. pause
  33. goto end
  34. :no_deusf
  35. echo.
  36. echo. Cannot find Deusf.exe.  Check your directory and try again.
  37. echo.
  38. goto end
  39. :finish
  40. echo.
  41. echo. Stargrfx.wad appended successfully.
  42. echo.
  43. echo. To play Startrek.wad type startrek.
  44. :end    
  45.  
  46.