home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Superdead 2
/
superdead2.iso
/
cc1
/
neu
/
mbcc1034
/
untruc.bat
< prev
next >
Wrap
DOS Batch File
|
1996-10-09
|
2KB
|
79 lines
@echo off
if not exist mmlite.exe goto NOMM
if not exist conquer.mix goto NOCO
if not exist bikeunt.mon goto NOLAS
if not exist bikeico.mon goto NOLAS
if not exist cclite.exe goto NOCC
if not exist truck.pat goto NOPAT
if not exist untruck.pat goto NOPAT
if not exist ccnames.exe goto NONAME
echo.
echo MONSTER TRUCK V2.0 DEINSTALLER
echo =========================
echo.
echo.
echo NOTE: This Utility will edit some C&C files:
echo -conquer.mix
echo -local.mix
echo -game.dat
echo.
echo If you want to cancel and save this files first
echo hit CTRL-C or hit any key to continue
echo.
echo by Felix&Christian Oppermann
echo Using programs by Andrew Griffin and Vladan Bato
pause
cls
echo.
echo deinstalling MONSTER TRUCK V2.0...
mmlite conquer.mix -r i110 bikeunt.mon >nul
mmlite conquer.mix -r i181 bikeico.mon >nul
cclite -u untruck.pat
del bikeunt.mon
del bikeico.mon
CCNAMES conquer.eng -r:158 "Recon Bike"
echo.
echo The Monster Truck V2.0 has been deinstalled.
echo Use the insttruc.bat file to reinstall it.
goto END
:NOPAT
echo Either the file 'truck.pat' or 'untruck.pat' are not in the current directory
echo You need these files to change the game.dat configuration.
goto BADEND
:NOCC
echo The file 'cclite.exe' is not in the current directory. You need this file
echo to change your game.dat file.
goto BADEND
:NOMM
echo The file 'mmlite.exe' is not in the current directory. You need this file
echo to change your conquer.mix file so you see the old graphics.
goto BADEND
:NOCO
echo The file 'conquer.mix' is not in the current directory. You need this file.
goto BADEND
:NOLAS
echo Either the file 'bikeunt.mon' or 'bikeico.mon' is not in the
echo current directory. You need this file as it contains the graphics
echo for the structure.
goto BADEND
:NONAME
echo The file 'CCNAMES.EXE' is not in the current directory. You need this file
echo to change the name of the obelisk.
goto BADEND
:BADEND
echo The deinstallation process failed.
goto END
:END