home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 3.10
/
1998-01_Disc_3.10.iso
/
PATCHES
/
jf3updt2.exe
/
UPDATE.BAT
< prev
Wrap
DOS Batch File
|
1997-10-23
|
2KB
|
48 lines
@echo off
cls
IF NOT EXIST resource\graphics.lib goto NOJF3
echo ┌─────────────────────────────────────────────────────────────────────────────┐
echo │ JET FIGHTER III Upgrade Program │
echo └─────────────────────────────────────────────────────────────────────────────┘
echo
echo Searching for an installed copy of JetFighter III...
echo
echo JetFighter III found! Ready to apply the update.
pause
echo
echo Updating JetFighter III
echo This may take several minutes...
rename jf3updt2.dat patch.exe
patch -d -o
rename patch.exe jf3updt2.dat
echo
echo Patch successfully applied
goto END
:NOJF3
cls
echo ┌─────────────────────────────────────────────────────────────────┐
echo │ JetFighter III was not found in this directory! │
echo │ │
echo │ Be sure to change into the JetFighter III directory before │
echo │ applying the patch! You must also copy the update file into │
echo │ the directory where JetFighter III was installed. │
echo │ │
echo │ FULL INSTRUCTIONS: │
echo │ 1. Copy the update file into your JetFighter III directory │
echo │ by typing: COPY JF3UPDT2.EXE C:\JF3 [Enter] │
echo │ 2. Switch into the JetFighter III directory: CD \JF3 [Enter] │
echo │ 3. Decompress this update by typing: JF3UPDT2 [Enter] │
echo │ 4. Apply the update by typing: UPDATE [Enter] │
echo │ │
echo └─────────────────────────────────────────────────────────────────┘
goto END
:END
echo