home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / games / pcdemos1.zip / DEMO.BAT next >
DOS Batch File  |  1991-01-24  |  752b  |  34 lines

  1. echo off
  2. :start
  3.   echo ----------------------------------------
  4.   echo Do you wish to select the PC Globe Demo?
  5.   echo ----------------------------------------
  6.   echo   Valid Choices:
  7.   echo       Y -- to select the PC Globe Demo
  8.   echo       N -- to select the PC USA Demo
  9.   echo ----------------------------------------
  10.   yes_no   Enter Choice
  11.   if not errorlevel 1 goto usa
  12. :globe
  13.   pcgdemo
  14.   if errorlevel 12 goto outofm
  15.   if errorlevel  0 goto succ
  16.   goto exit
  17.   :succ
  18.   type pcgexit.txt
  19.   goto exit
  20.   :outofm
  21.   type pcgerror.txt
  22.   goto exit
  23. :usa
  24.   usademo
  25.   if errorlevel 12 goto outofmemory
  26.   if errorlevel  0 goto success
  27.   goto exit
  28.   :success
  29.   type exit.txt
  30.   goto exit
  31.   :outofmemory
  32.   type error.txt
  33. :exit
  34.