home *** CD-ROM | disk | FTP | other *** search
/ MegaDoom Add-On 3 / MEGADOOM3.iso / dm1wads / torched / torched.bat < prev    next >
DOS Batch File  |  1994-07-15  |  490b  |  24 lines

  1. @echo off
  2. set slevel=
  3. cls
  4. echo.
  5. echo.
  6. echo.
  7. echo Type a number for skill level desired or Q to quit.
  8. echo.
  9. choice /c:1234Q "Which Skill Level Would You Like To Play :"
  10.         if errorlevel 1 set slevel=1
  11.         if errorlevel 2 set slevel=2
  12.         if errorlevel 3 set slevel=3
  13.         if errorlevel 4 set slevel=4
  14.         if errorlevel 5 goto quit
  15. doom -file torched.wad -skill %slevel%
  16. goto end
  17. :quit
  18. echo.
  19. echo Batch file terminated.
  20. echo.
  21. echo.
  22. :end
  23. set slevel=
  24.