home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Killer
/
Game_Killer.bin
/
1099.FDSETUP.BAT
< prev
next >
Wrap
DOS Batch File
|
1989-10-18
|
2KB
|
51 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 3.0 (FS3) or 4.0 (FS4) when
rem loading from floppy disk. Run this batch file once to load
rem certain files from the second disk in the set, which will
rem allow the copy of the FL disk to be used in place of the
rem second disk during the load-up procedure. Once FS3 is fully
rem loaded looking at RWY 36 at Chicago's Meigs Field, replace
rem the normal second disk, and continue using FS3/FS4 normally.
echo ┌─────────────────────────────────────────────┐
echo │ Place your Microsoft FS3 or FS4 "Scenery" │
echo │ disk in A: and a non-write-protected COPY │
echo │ of your Facilities Locator Application disk │
echo │ in B:, then press any key to continue. │
echo └─────────────────────────────────────────────┘
pause
if exist str.fs4 goto f4ver
copy A:KB1.KBD B:
copy A:KB2.KBD B:
copy A:KB3.KBD B:
copy A:F6 B:
copy A:F6SENS B:
copy A:F6H B:
copy A:F6HSENS B:
copy A:F6MSENS B:
copy A:F6C B:
copy A:F6CSENS B:
copy A:F1 B:
copy A:SIM1.SIM B:
copy A:SIM2.SIM B:
copy A:SIM4.SIM B:
copy A:MODE1.MOD B:
copy A:CF.FS3 B:
copy A:STR.FS3 B:
echo Successful completion!
goto end
:f4ver
echo ***
echo You have Version 4.0 of Microsoft Flight Simulator
echo ***
echo Please type FS4FD to set up Instant Facilities Locator
echo on floppy disks with version 4.0.
***
:end