home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Superdead 2
/
superdead2.iso
/
cc1
/
neu
/
mbcc1035
/
instufob.bat
< prev
next >
Wrap
DOS Batch File
|
1996-10-13
|
2KB
|
75 lines
@echo off
if not exist conquer.mix goto NOCO
if not exist ufob.shp goto NOSHP
if not exist ufoicon.shp goto NOSHP
if not exist ccnames.exe goto NONAME
IF not exist cclite.exe goto NOCC
echo.
echo BIG INDEPENDENCE FIGHTER INSTALLER 1.0
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 installing INDEPENDENCE FIGHTER...
mmlite conquer.mix -e i127 apauntb.ufo >nul
mmlite conquer.mix -e i194 apaicob.ufo >nul
mmlite conquer.mix -r i127 ufob.shp >nul
mmlite conquer.mix -r i194 ufoicon.shp >nul
If not exist conquer.eng goto extext
Goto ChName
:EXTEXT
mmlite local.mix -e i1 conquer.eng >nul
Goto ChName
:CHNAME
CCNAMES conquer.eng -r:108 "INDEPENDENCE FIGHTER"
echo.
echo The INDEPENDENCE FIGHTER 1.0 has been installed.
echo Use the unufos.bat file to remove it.
goto END
: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 new graphics.
goto BADEND
:NOCO
echo The file 'conquer.mix' is not in the current directory. You need this file.
goto BADEND
:NOSHP
echo Either the file 'ufob.shp' or 'ufoicon.shp' is not in the
echo current directory. You need this file as it contains the graphics
echo for the aircraft.
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 Apache.
goto BADEND
:BADEND
echo The installation process failed.
goto END
:END