home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
3D Madness! Companion CD
/
3DMADNESS.iso
/
games
/
gknight
/
gknight.exe
/
LOADER.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-06-15
|
1KB
|
57 lines
@echo off
rem Cartoon.bat
rem Greg Tomko-Pavia 14 June 93
rem Copyright 1993 by Sierra On-Line
rem
rem This batch file will install patches to a previously
rem installed Gabriel Knight demo. The patches will load
rem the opening cartoon movie sequence.
rem
cls
if "%0"=="loader" goto ready
if "%2"=="" goto info
copy %1:cartoon.bat %2:loader.bat
%2:
loader %1
goto exit
:info
echo You will need approximately 7 megabytes of free space on your hard
echo drive. To load the opening cartoon please insure that the current
echo directory on your hard drive is the gabriel knight directory. Then
echo run this batch file from the floppy, telling it the "from" and "to"
echo drive letters. Example:
echo
echo cartoon a c
echo
echo The above will load the gabriel knight opening cartoon from floppy
echo drive "a:" to the hard drive "c:"
goto exit
:ready
echo Please answer yes to all overwrite prompts...
copy %1:seqs.zip
copy %1:pkunzip.exe
pkunzip seqs
del seqs.zip
echo Insert disk 2 into drive %1 and then
pause
copy %1:moreseqs.zip
pkunzip moreseqs
del moreseqs.zip
del pkunzip.exe
echo.
echo Done!
echo.
:exit