home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hot Shareware 35
/
hot35.iso
/
ficheros
/
VDUKE
/
DUKERAGE.ZIP
/
DUKERAGE.BAT
next >
Wrap
DOS Batch File
|
1996-08-28
|
749b
|
28 lines
@echo off
echo This will begin installing the Duke Rage con file into your duke3d
echo directory. If you want to restore the orignial cons, type restore
echo at the command prompt. To termminate the batch job, press <ctrl> - <c>.
pause
copy game.mad c:\duke3d
copy user.mad c:\duke3d
c:
cd duke3d
if errorlevel 0 goto bad
rename user.con user.old
rename game.con game.old
rename game.mad game.con
rename user.mad user.con
if errorlevel 0 goto end
goto end
:bad
echo An error has occured while patching your con files. If your duke is
echo in another directory than c:\duke3d, Please edit this batch file
echo accordingly.
goto done
:end
cls
echo The cons have been successfuly patched!!! ENJOY!!!
goto done
:done