home *** CD-ROM | disk | FTP | other *** search
/ Big Box 200 / BOX200.BIN / start1.bat < prev    next >
Encoding:
DOS Batch File  |  1995-07-17  |  1.7 KB  |  105 lines

  1. @ECHO OFF
  2.  
  3. if "%1"=="" goto ende
  4.  
  5. if "%1"=="1" goto SUPERFLY 
  6. if "%1"=="2" goto TAIPAN
  7. if "%1"=="3" goto TEXTRIS
  8. if "%1"=="4" goto VECTOR5
  9. if "%1"=="5" goto VEGAS 
  10. if "%1"=="6" goto VLEAP1
  11. if "%1"=="7" goto WARHEAVE
  12. if "%1"=="8" goto WILLY
  13. if "%1"=="9" goto WILSTAR
  14. if "%1"=="10" goto WORDGRA
  15. if "%1"=="11" goto WORDWHIZ
  16. if "%1"=="12" goto WUERFEL
  17. if "%1"=="30" goto GOTCHA
  18. goto ende
  19.  
  20.         :SUPERFLY
  21.         SET PRG=FLY.exe
  22.         SET DIR=SUPERFLY
  23.         goto install
  24.  
  25.         :TAIPAN
  26.         SET PRG=TAIPAN2.com
  27.         SET DIR=TAIPAN
  28.         goto install
  29.  
  30.         :TEXTRIS
  31.         SET PRG=TEXTRIS.exe
  32.         SET DIR=TEXTRIS
  33.         goto install
  34.  
  35.         :VECTOR5
  36.         SET PRG=PLAYIT.exe
  37.         SET DIR=VECTOR5
  38.         goto install
  39.  
  40.         :VEGAS
  41.         SET PRG=VEGAS.exe
  42.         SET DIR=VEGAS
  43.         goto install
  44.  
  45.         :VLEAP1
  46.         SET PRG=VLEAPER.exe
  47.         SET DIR=VLEAP1
  48.         goto install
  49.  
  50.         :WARHEAVE
  51.         SET PRG=WAR.exe
  52.         SET DIR=WARHEAVE
  53.         goto install
  54.  
  55.         :WILLY
  56.         SET PRG=WILLY.com
  57.         SET DIR=WILLY
  58.         goto install
  59.  
  60.         :WILSTAR
  61.         SET PRG=SLOTS.exe
  62.         SET DIR=WILSTAR
  63.         goto install
  64.  
  65.         :WORDGRA
  66.         SET PRG=WG286.exe
  67.         SET DIR=WORDGRA
  68.         goto install
  69.  
  70.         :WORDWHIZ
  71.         SET PRG=WORDWHIZ.exe
  72.         SET DIR=WORDWHIZ
  73.         goto install
  74.  
  75.         :WUERFEL
  76.         SET PRG=WUERFEL.exe
  77.         SET DIR=WUERFEL
  78.         goto install
  79.         
  80.         :GOTCHA
  81.         SET PRG=GOTCHA.exe
  82.         SET DIR=GOTCHA
  83.         goto install
  84.         
  85.         goto ende
  86.  
  87. :install 
  88.         cd DISK1
  89.         cd %DIR%
  90.         %PRG%
  91.         CD ..
  92.         CD ..
  93. :ende
  94. exit
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.