home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if not exist dmgraph.exe goto dmgrapherror
- if not exist red*.gif goto nogifs
- if not exist doom.wad goto nowad
- if exist doom.wad goto start
- :dmgrapherror
- cls
- echo ERROR: DMGRAPH.EXE cannot be found in current directory.
- echo .
- echo A B O R T I N G
- goto end
- :nogifs
- cls
- echo ERROR: No RED*.GIF files found in current directory.
- echo .
- echo A B O R T I N G
- goto end
- :nowad
- cls
- echo ERROR: DOOM.WAD not found in current directory.
- echo .
- echo A B O R T I N G
- goto end
- :start
- @echo off
- dmgraph chgga0 -e chainold.gif
- dmgraph shtga0 -e shotold.gif
- dmgraph pisga0 -e pistold.gif
- dmgraph chgga0 -s redchain.gif -i -104,-56
- dmgraph shtga0 -s redshot.gif -i -98,-63
- dmgraph pisga0 -s redpistl.gif -i -126,-45
- cls
- echo .
- echo .
- echo * * * LASER SIGHTS ACTIVATED * * *
- echo .
- echo .
- echo Created for M E G A D E T H by J S Hayre
- echo .
- :end
-