home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Killer
/
Game_Killer.bin
/
807.SCADD.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-12-01
|
488b
|
19 lines
@echo off
if "%SCENROOT%"=="" goto L1
:L0
xcopy %SCENROOT%\%1\*.sc1 .
xcopy %SCENROOT%\%1\*.dy1 .
xcopy %SCENROOT%\%1\*.mod .
shift
if "%1" == "" goto L2
goto L0
:L1
echo set environment variable SCENROOT before running this batch file:
echo it should contain the full pathname of the parent directory
echo of your scenery subdirectories. For example:
echo.
echo set SCENROOT=\fs4\scenery
echo.
echo note: - the pathname needs a leading "\" but not a trailing "\"
:L2