home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- CLS
- ECHO This program will install the new graphics for Ft. Knocks.
- ECHO You must have all of the included files + this one in your doom
- ECHO directory. If not, please press Ctrl-C now.
- PAUSE
- CLS
- ECHO If you do not have a backup copy of your IWAD, make one so that
- ECHO after you finish the level, you may just replace the DOOM.WAD with
- ECHO the backup so that other levels look normal.
- ECHO If you'd like to make a backup copy now (DOOM.BAK, 10megs),
- ECHO Press "F1". Otherwise, press any key to continue...
- reply
- if errorlevel 59 goto bak
-
- :gfx
- ECHO Inserting new GFX...
- DMGRAPH DOOR9_1 -s DOOR9_1.PPM
- DMGRAPH W73A_1 -s W73A_1.PPM
- DMGRAPH W73A_2 -s W73A_2.PPM
- DMGRAPH W73B_1 -s W73B_1.PPM
- ECHO Done!
- PAUSE
- CLS
- ECHO TO RUN, TYPE: DOOM -FILE FORT.WAD
- ECHO Then choose first episode.
- ECHO Good Luck.
- goto end
-
- :bak
- ECHO Backing up DOOM.WAD to DOOM.BAK...
- COPY DOOM.WAD DOOM.BAK
- CLS
- goto gfx
-
- :end
-