home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
500 Game Surplus
/
XSurplus.iso
/
43
/
DIRFIX.BAT
< prev
next >
Wrap
DOS Batch File
|
1997-02-14
|
2KB
|
63 lines
@echo off
cls
if "%1"=="GO" goto yes
if "%1"=="go" goto yes
if "%1"=="Go" goto yes
echo DIRFIX.BAT for Get Piste! by Tim Furnish
echo"
echo A helpful batch file to put all the files needed for Get Piste! into the right
echo directories... just in case you didn't unzip the compressed file with the -d
echo flag (and let's face it, you probably didn't know that you should have done).
echo"
echo In case you have no idea what I'm going on about, that's fine... but put it
echo this way. If the program told you to run DIRFIX then you're doing the right
echo thing. If the program found all its files and came up with some other error,
echo then running this won't help at all. And if the program works fine then again,
echo I have no idea why you're here.
echo"
echo If you haven't tried the main Get Piste! program yet, then go and do so. It's
echo very good.
echo"
echo To run the DIRFIX batch file, type DIRFIX GO and prepare to be not dazzled at
echo all.
goto done
:yes
echo Here we go... attempting to sort your life out, please wait.
echo"
echo 1) Creating GP-GFX directory...
md GP-GFX
echo"
echo 2) Moving graphics files...
move *.320 GP-GFX
move *.SHD GP-GFX
move *.LTS GP-GFX
move *.WOT GP-GFX
echo"
echo 3) Creating GP-SOUND directory...
md GP-SOUND
echo"
echo 4) Moving sound files...
move *.NEW GP-SOUND
move *.RAW GP-SOUND
move *.INS GP-SOUND
echo"
echo And there we have it. Type SETUP to change your soundcard settings, or PISTE
echo to run the game. For further information take a look at the README.TXT file.
:done
echo"
echo - Tim Furnish, 1997
echo"