home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if not exist dmgraph.exe goto dmgrapherror
- if not exist *.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 *.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 -s chainold.gif -i -104,-117
- dmgraph shtga0 -s shotold.gif -i -98,-108
- dmgraph pisga0 -s pistold.gif -i -126,-106
- del chainold.gif
- del shotold.gif
- del pistold.gif
- cls
- echo .
- echo .
- echo * * * LASER SIGHTS DE-ACTIVATED * * *
- echo .
- echo .
- echo Created for M E G A D E T H by J S Hayre
- echo .
- :end
-