home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Instant Doom Levels
/
Instant.Doom.Levels.-.Level.Master.II.iso
/
WADS
/
DOOM1
/
M_O
/
OTTAWAU.ZIP
/
OTTAWAU.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-03-20
|
3KB
|
69 lines
@echo off
cls
echo ** OTTAWAU v0.9 (pre-release) **
echo
echo This is a modified PWAD file for DOOM v1.9, ID wil *NOT*
echo support any modified games. For help on this PWAD, send e-mail
echo to me at az589@freenet.carleton.ca (Jean-Serge Gagnon).
echo
echo Enjoy!
if exist back2org.bat goto done
echo
echo Don't forget that you can also view the new monsters, floors
echo ceilings and sprites (like trees) by typing the command CHG2OU.
echo This will patch your original DOOM.EXE and DOOM.WAD files to see
echo these changes. Before you say you don't like that, it IS worth
echo doing and besides, there is no danger for the original DOOM files
echo as they will be backed-up and if there is any problem, you can just
echo type BACK2ORG right after.
:done
if not exist doom.exe goto missing
if not exist doom.wad goto missing
if exist ottawau.wad goto ok
:missing
echo **************************************************************
echo ************** !!!!!! ERROR !!!!!! *************
echo **************************************************************
echo ** Oops! I can't find either the DOOM.EXE or DOOM.WAD! **
echo ** Please make sure you have them in the same directory **
echo ** as OTTAWAU.WAD! **
echo **************************************************************
echo
goto end
:ok
if exist back2org.bat goto ok19
dmcheck /q v 1.9
echo
if not errorlevel == 255 goto noterr
echo ****************************************************************************
echo *** You do not appear to have version 1.9 of DOOM or the files have ***
echo *** been modified. According to DMCHECK, you have: ***
dmcheck w /m /u
goto getkey
:noterr
if not errorlevel == 2 goto notshar
echo ****************************************************************************
echo *** You only have the sharewear version of DOOM 1.9! You can't use ***
echo *** PWAD files with it. Please get the full registered version of DOOM. ***
echo ****************************************************************************
goto end
:notshar
if not errorlevel == 1 goto ok19
echo ****************************************************************************
echo *** Your version of DOOM 1.9 registered seams modified! This PWAD ***
echo *** may or may not work with the modified PWAD file. ***
:getkey
echo *** Press [ENTER] to try running the PWAD anyways, or [ESC] to abort. ***
echo ****************************************************************************
dmcheck /q ask
echo
if errorlevel == 255 goto end
:ok19
echo
echo ╔═════════════════════════════════════════════════════════╗
echo ║ Press [ENTER] to run OTTAWAU, or press CTRL-C to abort. ║
echo ╚═════════════════════════════════════════════════════════╝
pause >nul
doom -file ottawau.wad
:end