home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Killer
/
Game_Killer.bin
/
685.WIMPMAP.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-07-13
|
996b
|
41 lines
@echo off
if exist wimphead.wl1 goto wimphead_found
echo File WIMPHEAD.WL1 not found.
goto find_wimptemp
:wimphead_found
if exist wimptemp.wl1 goto restore_wimpmap
echo File WIMPTEMP.WL1 not found.
goto exit_error
:restore_wimpmap
echo Copying WIMPHEAD.WL1 to MAPHEAD.WL1.
copy wimphead.wl1 maphead.wl1 > nul
echo Copying WIMPHEAD.WL1 to MAPTEMP.WL1.
copy wimptemp.wl1 maptemp.wl1 > nul
echo Wimpy maps activated!
goto done
:find_wimptemp
if exist wimptemp.wl1 goto exit_error
echo File WIMPTEMP.WL1 not found.
goto exit_error
:exit_error
echo
echo ╔════════════════════════════════════════════════════════╗
echo ║ An error occurred during Wimp map installation! ║
echo ╟────────────────────────────────────────────────────────╢
echo ║ The original MAPHEAD.WL1 should exist as WIMPHEAD.WL1. ║
echo ║ The original MAPTEMP.WL1 should exits as WIMPTEMP.WL1. ║
echo ╚════════════════════════════════════════════════════════╝
:done
echo on