home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- :start
-
- cls
- echo WHAT PC? DOS FRONT MENU
- echo"
- echo"
- echo This Dos menu system is to enable you to run the 3D Shareware games, Descent
- echo Heretic and Rise of the Triad, plus the Transport Tycoon demo. You have to run
- echo these programs from Dos as they require ALL your PC's resources, and Windows
- echo prevents them running.
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo Please note that all these games have been set up to try to play sound using a
- echo Soundblaster compatible card. If you do not have one, copy the entire directory
- echo of a game you wish to play to your hard disk, and run SETUP before playing.
-
- :menu1
-
- \system\getopt "Select an option:" " Descent" " Heretic" "Rise of the Triad" "Transport Tycoon" "-- Exit to Dos --"
-
- if errorlevel=5 goto exit
- if errorlevel=4 goto tycoon
- if errorlevel=3 goto rott
- if errorlevel=2 goto heretic
- if errorlevel=1 goto descent
-
- goto exit
-
- :descent
-
- cls
- echo"
- echo"
- echo"
- echo"
- echo This program must be installed to a hard disk before it will run.
- echo The program requires 6.5Mb of free hard disk space.
- echo Please select one of the following:
-
- :menu2
-
- \system\getopt "Install Descent to:" " C:\DESCENT" " D:\DESCENT" " E:\DESCENT" " F:\DESCENT" " - Don't Install -"
-
- if errorlevel=5 goto start
- if errorlevel=4 goto df
- if errorlevel=3 goto de
- if errorlevel=2 goto dd
- if errorlevel=1 goto dc
-
- goto start
-
- :df
-
- echo"
- echo"
- md f:\descent
- copy \share\descent\*.* f:\descent
- f:
- cd\descent
- echo"
- echo To change the programs sound setup, exit from Descent and
- echo run SETUP.EXE
- echo"
- descent
- goto exit
-
- :de
-
- echo"
- echo"
- md e:\descent
- copy \share\descent\*.* e:\descent
- e:
- cd\descent
- echo"
- echo To change the programs sound setup, exit from Descent and
- echo run SETUP.EXE
- echo"
- descent
- goto exit
-
- :dd
-
- echo"
- echo"
- md d:\descent
- copy \share\descent\*.* d:\descent
- d:
- cd\descent
- echo"
- echo To change the programs sound setup, exit from Descent and
- echo run SETUP.EXE
- echo"
- descent
- goto exit
-
- :dc
-
- echo"
- echo"
- md c:\descent
- copy \share\descent\*.* c:\descent
- c:
- cd\descent
- echo"
- echo To change the programs sound setup, exit from Descent and
- echo run SETUP.EXE
- echo"
- descent
- goto exit
-
- :heretic
-
- cls
- echo To change this program's sound setup, copy it to your hard disk
- echo and then run SETUP.EXE before running HERETIC.EXE
- echo"
-
- cd \share\heretic
- heretic
- echo"
- echo Press any key to continue...
- pause >nul
- cd \
- dosmenu
-
- :rott
-
- cls
- echo To change this program's sound setup, copy it to your hard disk
- echo and then run SNDSETUP.EXE before running ROTT.EXE
- echo"
-
- cd \share\rott
- rott
- echo"
- echo Press any key to continue...
- pause >nul
- cd \
- dosmenu
-
- :tycoon
-
- cls
- cd \demos\games\tycoon
- tycoon
- cd \
- dosmenu
-
- :exit
-
- cls
- echo Goodbye from What PC?...
- echo"
-