home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 November
/
pcwk_11_98B.iso
/
Gry1
/
Xmendemo
/
XMENDEMO.EXE
/
install.bat
next >
Wrap
DOS Batch File
|
1997-10-17
|
1KB
|
56 lines
@echo off
if x%1==x goto error
if not exist %1\quake.exe goto error
echo.
echo Installing X-Men files to your Hard Drive..
mkdir %1\xmendemo
echo pak0.pak
copy pak0.pak %1\xmendemo
if not exist %1\xmen\pak0.pak goto nospace
echo progs.dat
copy progs.dat %1\xmendemo
if not exist %1\xmen\progs.dat goto nospace
echo xmen.bat
copy xmen.bat %1\
if not exist %1\xmen.bat goto nospace
echo.
echo Installation succesfull.
echo.
echo Change to your Quake directory, and type 'xmen' to start the game.
goto end
:error
echo _____________________________________________________________
echo.
echo To install X-Men for dos, please use:
echo.
echo INSTALL [quake-dir]
echo.
echo Where [quake-dir] is the location of your Quake installation.
echo.
echo eg. INSTALL c:\quake
echo _____________________________________________________________
goto end
:nospace
echo.
echo !!! Unable to install X-Men files !!!
echo.
echo Please check:
echo.
echo (a) you entered the correct location of your Quake installation
echo.
echo (b) that you have at least 80mb of Free Space on the
echo destination drive.
echo.
goto end
:end