home *** CD-ROM | disk | FTP | other *** search
- echo off
- if %1*==* goto OK
- goto GAVEPATH
- :OK
- cls
- echo ────────────────────────────────────────────────────────────────────────
- echo The SPACE ADVENTURE BONUS DISK new zoom images will be
- echo copied to your hard disk drive in the directory called:
- echo
- echo C:\SPACE
- echo
- echo Is this the correct directory?
- echo
- echo Type Y if YES
- echo or
- echo Type N if NO
- echo
- echo ────────────────────────────────────────────────────────────────────────
- echo
- echo
- YESNO Y y
- if not errorlevel 1 goto DIFDIR
- if not exist c:\SPACE\KAV.EXE goto CANTFIND
- cls
- echo ─────────────────────────────────────────────────────────────────────────────
- echo Copying SPACE ADVENTURE BONUS DISK to C:\SPACE...
- echo
- echo
- echo SPACE ADVENTURE BONUS ZOOM IMAGES
- echo
- echo
- echo SINAI PENINSULA FROM SPACE
- echo SATURN
- echo SATURN'S MOOON TRITON
- echo SPACE COMMERCE
- echo SPACE SHUTTLE COCKPIT
- echo SPACEWALK
- echo VOYAGER
- echo
- echo
- echo Please Wait. Copying...
- copy *.img c:\SPACE\ZOOM
- C:
- cd\SPACE
- :SUCCESS
- cls
- echo ╔════════════════════════════════════════════════════════════╗
- echo ║ ║
- echo ║ The SPACE ADVENTURE BONUS DISK files have been ║
- echo ║ successfully transfered to your hard disk. ║
- echo ║ ║
- echo ║ To start your updated SPACE ADVENTURE, type the word: ║
- echo ║ ║
- echo ║ SPACE [ENTER] ║
- echo ║ ║
- echo ║ ║
- echo ╚════════════════════════════════════════════════════════════╝
- echo
- goto DONE
- :DIFDIR
- cls
- echo ╔════════════════════════════════════════════════════════════╗
- echo ║ ║
- echo ║ To install the SPACE ADVENTURE BONUS DISK ║
- echo ║ files to a directory other than C:\SPACE, rerun ║
- echo ║ this install program along with the name of the ║
- echo ║ directory of where SPACE ADVENTURE resides. ║
- echo ║ ║
- echo ║ For example, if your SPACE ADVENTURE is ║
- echo ║ located in the directory D:\SPACE, type ║
- echo ║ ║
- echo ║ INSTALL D:\SPACE ║
- echo ║ ║
- echo ║ ║
- echo ╚════════════════════════════════════════════════════════════╝
- echo
- goto DONE
- :CANTFIND
- cls
- echo ╔════════════════════════════════════════════════════════════╗
- echo ║ ║
- echo ║ The install program could not find the file ║
- echo ║ KAV.EXE in the directory specified. Rerun this ║
- echo ║ install program along with the correct name of the ║
- echo ║ directory of where SPACE ADVENTURE resides. ║
- echo ║ ║
- echo ║ For example, if your SPACE ADVENTURE is ║
- echo ║ located in the directory D:\SPACE, type ║
- echo ║ ║
- echo ║ INSTALL D:\SPACE ║
- echo ║ ║
- echo ║ ║
- echo ╚════════════════════════════════════════════════════════════╝
- echo
- goto DONE
- :GAVEPATH
- cls
- echo ────────────────────────────────────────────────────────────────────────
- echo The SPACE ADVENTURE BONUS DISK zoom images will be
- echo copied to your hard disk drive in the directory called:
- echo
- echo %1
- echo
- echo Is this the correct directory?
- echo
- echo Type Y if YES
- echo or
- echo Type N if NO
- echo
- echo ────────────────────────────────────────────────────────────────────────
- echo
- echo
- YESNO Y y
- if not errorlevel 1 goto DIFDIR
- if not exist %1\KAV.EXE goto CANTFIND
- cls
- echo ─────────────────────────────────────────────────────────────────────────────
- echo Transfering SPACE ADVENTURE BONUS DISK to C:\SPACE...
- echo
- echo
- echo SPACE ADVENTURE BONUS ZOOM IMAGES
- echo
- echo
- echo SINAI PENINSULA FROM SPACE
- echo SATURN
- echo SATURN'S MOOON TRITON
- echo SPACE COMMERCE
- echo SPACE SHUTTLE COCKPIT
- echo SPACEWALK
- echo VOYAGER
- echo
- echo
- echo Please Wait. Copying...
- copy *.img %1\ZOOM
- cd %1
- goto SUCCESS
- :DONE
-