home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 35 / hot35.iso / ficheros / VDUKE / DUKERAGE.ZIP / DUKERAGE.BAT next >
DOS Batch File  |  1996-08-28  |  749b  |  28 lines

  1. @echo off
  2. echo This will begin installing the Duke Rage con file into your duke3d 
  3. echo directory.  If you want to restore the orignial cons, type restore
  4. echo at the command prompt.  To termminate the batch job, press <ctrl> - <c>.
  5. pause
  6. copy game.mad c:\duke3d
  7. copy user.mad c:\duke3d
  8. c:
  9. cd duke3d
  10. if errorlevel 0 goto bad
  11. rename user.con user.old
  12. rename game.con game.old
  13. rename game.mad game.con
  14. rename user.mad user.con
  15. if errorlevel 0 goto end
  16. goto end
  17. :bad
  18. echo An error has occured while patching your con files.  If your duke is 
  19. echo in another directory than c:\duke3d, Please edit this batch file 
  20. echo accordingly.
  21. goto done
  22. :end 
  23. cls
  24. echo The cons have been successfuly patched!!!  ENJOY!!!
  25. goto done
  26. :done
  27.  
  28.