home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cheats, Hacks & Hints
/
Cheats_Hacks_and_Hints.bin
/
doom2
/
single
/
nasty
/
nasty.bat
< prev
next >
Wrap
DOS Batch File
|
1995-02-26
|
1KB
|
41 lines
@echo off
echo Checking for existence of Doom2...
if not exist Doom2.exe goto NoExistDoom
if not exist Doom2.wad goto NoExistDoomWad
echo Checking for existence of Nasty...
if not exist Nasty.wad goto NoExistLevelWad
echo Swapping Out old Text...
dehacked -save bnasty.deh
echo Swapping in new Text...
dehacked -load nasty.deh
echo Loading DoomII with Nasty Levels...
doom2 %1 %2 %3 %4 %5 -file nasty.wad %6 %7 %8 %9
cls
echo.
echo I hope you had fun! Any Q's or C's E-Mail me!
echo -Ross Mellgren (rmm@cirrus.iii.net)
echo.
goto End
:NoExistDoom
echo DoomII does not exist in this directory!!
echo.
echo "How Do I Fix That?"
echo.
echo Move Nasty into the DoomII directory or get DoomII (Hell on Earth)
goto End
:NoExistDoomWad
echo The DoomII WADFile does not exist in this directory!!
echo.
echo "How Do I Fix That?"
echo.
echo Move Nasty into the DoomII directory or call ID to get a copy.
goto End
:NoExistLevelWad
echo The Nasty Levels do not exist in this direrctory!!
echo.
echo "How Do I Fix That?"
echo.
echo Move Nasty into the DoomII directory or get Nasty from ftp.cdrom.com
goto End
:End