home *** CD-ROM | disk | FTP | other *** search
- echo off
- if "%1" == "" goto nodrive
- mkdir %1\ROM >NUL
- echo --
- echo -
- echo - Copy files for RINGS OF MEDUSA
- echo -
- echo --
-
- :Vol1
-
- if exist rom.exe goto GetVol1
- echo - Insert Disk 1 into the floppy drive, hit any key to continue.
- echo --
- pause > nul
- goto Vol1
- :GetVol1
- echo - Copying disk 1 to %1\ROM
- echo --
- copy *.* %1\ROM >nul
- echo --
-
- :Vol2
- if exist EGA.RES goto GetVol2
- echo - Insert Disk 2 into the floppy drive, hit any key to continue.
- echo --
- pause > nul
- goto Vol2
- :GetVol2
- echo - Copying disk 2 to %1\ROM
- echo --
- copy *.* %1\ROM >NUL
- echo --
- cls
- echo --
- echo -
- echo - Done installing RINGS OF MEDUSA %1\ROM
- echo -
- echo - To run, type ROM
- echo -
- echo --
- %1
- cd \ROM
- goto end
-
- :nodrive
- echo --
- echo -
- echo - You must specify hard drive to install files onto.
- echo -
- echo - install C:
- echo -
- echo --
- goto end
-
- :end
-