home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- if not exist mmlite.exe goto NOMM
- if not exist conquer.mix goto NOCO
- if not exist guardico.flm goto NOFLM
- if not exist guardunt.flm goto NOFLM
- if not exist guardmak.flm goto NOFLM
- 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 FLAME TOWER 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 FLAME TOWER V2.0...
- mmlite conquer.mix -r i214 guardmak.flm >nul
- mmlite conquer.mix -r i231 guardico.flm >nul
- mmlite conquer.mix -r i157 guardunt.flm >nul
- cclite -u unflame.pat
- del guardmak.flm
- del guardico.flm
- del guardunt.flm
- CCNAMES conquer.eng -r:111 "Guard Tower"
-
- echo.
- echo The Flame Tower V2.0 has been deinstalled.
- echo Use the instflam.bat file to reinstall it.
- goto END
-
- :NOPAT
- echo Either the file 'flame.pat' or 'unflame.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 'guardunt.flm' or 'guardico.flm' or 'guardmak.flm is not
- echo in the 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
-