home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 2.6
/
1996-07_Disc_2.6.bin
/
doom2
/
critpath.bat
< prev
next >
Wrap
DOS Batch File
|
1996-01-17
|
397b
|
18 lines
@echo off
echo Loading Critical Path...
if not exist critpath.wad goto no_wad
if not exist doom2.wad goto no_doom
doom2 -file critpath.wad
goto end
:no_wad
echo Critical Path is not available! Make sure it's in your Doom directory.
goto end
:no_doom
echo DOOM2.WAD is not available! You must have critpath.wad and
echo critpath.bat in your Doom2 directory to run them.
:end