home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Killer
/
Game_Killer.bin
/
1108.FS4FD.BAT
< prev
next >
Wrap
DOS Batch File
|
1989-10-17
|
1KB
|
44 lines
@echo off
rem To the browser:
rem
rem This file will allow you to use the Facilities Locator (FL)
rem with Microsoft Flight Simulator 4.0 (FS4) when loading from
rem floppy disk. Run this batch file once to load certain files
rem from the second disk in the set, which will allow the copy of
rem the FL disk to be used in place of the second disk during the
rem load-up procedure. Once FS4 is fully loaded looking at RWY 36
rem at Chicago's Meigs Field, replace the normal second disk, and
rem continue using FS4 normally.
echo ┌───────────────────────────────────────────┐
echo │ Place your Microsoft FS4 "Scenery" disk │
echo │ in A: and a non-write-protected COPY of │
echo │ your Facilities Locator Application disk │
echo │ in B:, then press any key to continue. │
echo └───────────────────────────────────────────┘
pause
if exist str.fs3 goto f3ver
copy A:F1 B:
copy A:F1.DYN B:
copy A:SIM1.SIM B:
copy A:SIM2.SIM B:
copy A:SIM3.SIM B:
copy A:SIM4.SIM B:
copy A:SIM5.SIM B:
copy A:SIM6.DRV B:
copy A:STR.FS4 B:
copy A:MODES.LBR B:
echo Successful completion!
goto end
:f3ver
echo ***
echo You have Version 3.0 of Microsoft Flight Simulator
echo ***
echo Please type FDSETUP to set up Instant Facilities Locator
echo on floppy disks with version 3.0.
echo ***
:end