home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cheats, Hacks & Hints
/
Cheats_Hacks_and_Hints.bin
/
doom2
/
single
/
r2wolfd2
/
r2wolf.bat
< prev
next >
Wrap
DOS Batch File
|
1994-10-25
|
533b
|
23 lines
@echo off
:start
if not exist doom2.wad goto locate
if not exist r2sprite.wad goto install
doom2 -file r2sprite.wad r2levels.wad r2stg.wad
goto end
:locate
echo Note: Cannot find doom2.wad,
echo make sure you have loaded the files in your Doom2 directory.
goto end
:install
echo The sprites have not been properly installed!
echo Press any key to install sprites (may take a couple of minutes)
echo or press ctrl-c to abort.
pause
deusf -doom c:\doom2 -sprite -add r2char.wad r2sprite.wad
goto start
:end