home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo Looking for CD-ROM drive...
- :DDISK
- IF NOT EXIST D:\Menu.bat GOTO EDISK
- D:
- goto MENU
- :EDISK
- IF NOT EXIST E:\Menu.bat GOTO FDISK
- E:
- goto MENU
- :FDISK
- IF NOT EXIST F:\Menu.bat GOTO GDISK
- F:
- goto MENU
- :GDISK
- IF NOT EXIST G:\Menu.bat GOTO HDISK
- G:
- goto MENU
- :HDISK
- IF NOT EXIST H:\Menu.bat GOTO IDISK
- H:
- goto MENU
- :IDISK
- IF NOT EXIST I:\Menu.bat GOTO JDISK
- I:
- goto MENU
- :JDISK
- IF NOT EXIST J:\Menu.bat GOTO KDISK
- J:
- goto MENU
- :KDISK
- IF NOT EXIST K:\Menu.bat GOTO LDISK
- K:
- goto MENU
- :LDISK
- IF NOT EXIST L:\Menu.bat GOTO MENU
- L:
- :MENU
- cd \
- cd Install
- cls
- echo.
- echo ╔═════════════════════════════════════════╗
- echo ║ PC PLAY DOS Installer ║
- echo ╚═════════════════════════════════════════╝
- echo.
- echo ╔════════════════════════════════════════════════════╗
- echo ║ Press the letter of the game you wish to install ║
- echo ╚════════════════════════════════════════════════════╝
- echo.
- echo a. Syndicate Wars
- echo b. Z
- echo c. Bedlam
- echo d. Hind
- echo e. Toonstruck
- echo f. Archimedean Dynasty
- echo g. Eradicator
- echo h. Deadly Games
- echo i. Swiv
- echo j. Metal Rage
- echo k. Wooden Ships & Iron Men
- echo l. Piranha
- echo.
- echo x. Exit
- echo.
- echo.
- choice /c:abcdefghijklmnopqrstuvwxyz /n
- cls
- if errorlevel 16 goto end
- if errorlevel 15 goto end
- if errorlevel 14 goto end
- if errorlevel 13 goto end
- if errorlevel 12 goto inst12
- if errorlevel 11 goto inst11
- if errorlevel 10 goto inst10
- if errorlevel 9 goto inst9
- if errorlevel 8 goto inst8
- if errorlevel 7 goto inst7
- if errorlevel 6 goto inst6
- if errorlevel 5 goto inst5
- if errorlevel 4 goto inst4
- if errorlevel 3 goto inst3
- if errorlevel 2 goto inst2
- if errorlevel 1 goto inst1
-
- :inst1
- SynWars.BAT
- goto end
-
- :inst2
- Z.BAT
- goto end
-
- :inst3
- Bedlam.BAT
- goto end
-
- :inst4
- Hind.BAT
- goto end
-
- :inst5
- Toonstrk.BAT
- goto end
-
- :inst6
- Ad.BAT
- goto end
-
- :inst7
- Erad.BAT
- goto end
-
- :inst8
- Deadly.BAT
- goto end
-
- :inst9
- Swiv.BAT
- goto end
-
- :inst10
- Metal.BAT
- goto end
-
- :inst11
- Wooden.bat
- goto end
-
- :inst12
- Piranha.BAT
- goto end
-
- :end