home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Killer
/
Game_Killer.bin
/
312.B17FOE.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-03-03
|
666b
|
24 lines
@echo off
cls
echo This file will alter the B17 files for use with KG200 mission files.
echo This routine will make certain changes and copy files to safety backups
echo of these files to prevent their loss.
echo Files effected are: DEMO1.DEM, DEMO2.DEM, B17F.SPC, and B17G.SPC
echo Running B17FRND.BAT after flying the KG200 missions restores everything
echo back to normal.
echo Press CTRL-C to abort this process.
echo .
pause
ren *.dem *.sav
cd ac
copy b17f.spc b17f.tmp
copy b17g.spc b17g.tmp
debug b17f.spc <b17foe.txt
cls
debug b17g.spc <b17foe.txt
cls
cd..
echo You are now ready to fly the KG200 missions. Lotsa luck fella!
@echo on