home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if not exist doom.exe goto doomexeerror
- if exist doom.meg goto mvonerror
- xcopy doom.exe *.meg
- cls
- if not exist deframed.exe goto deframederror
- if not exist megadeth.frt goto nofrt
- if not exist doom.wad goto nowad
- if exist doom.wad goto start
- :mvonerror
- cls
- echo ERROR: It appears that MegaViolence Mode is already activated.
- echo .
- echo A B O R T I N G
- goto end
- :doomexeerror
- cls
- echo ERROR: DOOM.EXE cannot be found in current directory.
- echo .
- echo A B O R T I N G
- goto end
- :deframederror
- cls
- echo ERROR: DEFRAMED.EXE cannot be found in current directory.
- echo .
- echo A B O R T I N G
- goto end
- :nofrt
- cls
- echo ERROR: MEGADETH.FRT cannot be 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
- deframed -pt megadeth.frt
- cls
- echo .
- echo .
- echo * * * MEGAVIOLENCE MODE ACTIVATED * * *
- echo .
- echo .
- echo Created for M E G A D E T H by J S Hayre
- echo .
- :end
-