home *** CD-ROM | disk | FTP | other *** search
- echo off
- if "%1"=="" goto end
- if "%1"=="do_it" goto filecopy
- echo This routine creates a directory named DRAGON and then copies the files from
- echo the program disks. When done, type "DLORD" and press ENTER to run the game...
- echo
- echo You may press Ctrl-C to abort this routine. . .
- pause
- if "%1"=="c" c:
- if "%1"=="C" c:
- if "%1"=="D" d:
- if "%1"=="d" d:
- if not exist DRAGON md DRAGON
- cd DRAGON
- copy a:install.bat
- install do_it
- :filecopy
- copy a:*.*
- echo Put disk 2 into drive A:
- pause
- copy a:*.*
- echo Put disk 3 into drive A:
- pause
- copy a:*.*
- echo Put disk 4 into drive A:
- pause
- copy a:*.*
- goto out
- :end
- cls
- echo
- echo To install Dragon Lord on your hard disk, type "INSTALL C" to install on the C
- echo drive, or "INSTALL D" to install on the D drive. The program files will
- echo be copied to a directory called DRAGON on the drive you specify.
- echo To install from the B drive, type "INSTALLB C" to install on drive C, or
- echo "INSTALLB D" to install on drive D.
- :out
- echo on