home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 1 / CD-ROM_Today_-_The_Disc_1_April-May_1994.iso / lol_demo / loldemo.bat < prev   
DOS Batch File  |  1994-01-25  |  2KB  |  67 lines

  1. @echo off
  2. cls
  3. echo Lands of Lore Demo.  Copyright 1994, Westwood Studios.
  4. echo ____________________________________________________________________________
  5. if %1- == - GOTO instruct
  6. if %1 == c: GOTO CDRIVE
  7. if %1 == C: GOTO CDRIVE
  8. if %1 == d: GOTO DDRIVE
  9. if %1 == D: GOTO DDRIVE
  10. if %1 == e: GOTO EDRIVE
  11. if %1 == E: GOTO EDRIVE
  12.  
  13. :CDRIVE
  14. md C:\LOL_DEMO > NUL
  15. cd C:\LOL_DEMO
  16. echo Installing to C:\LOL_DEMO, please wait...
  17. lol_demo C:\LOL_DEMO -o >NUL
  18. c:
  19. goto SETUP
  20.  
  21. :DDRIVE
  22. md D:\LOL_DEMO    > NUL
  23. cd D:\LOL_DEMO
  24. echo Installing to D:\LOL_DEMO, please wait...
  25. lol_demo D:\LOL_DEMO    -o    >NUL
  26. D:
  27. goto SETUP
  28.  
  29.  
  30. :EDRIVE
  31. md E:\LOL_DEMO    > NUL
  32. cd E:\LOL_DEMO
  33. echo Installing to E:\LOL_DEMO, please wait...
  34. lol_demo E:\LOL_DEMO    -o    >NUL
  35. E:
  36. goto SETUP
  37.  
  38.  
  39. :SETUP
  40. setup
  41. lands
  42. goto quit
  43.  
  44.  
  45. :instruct
  46. echo Thank you for your interest in Westwood Studio's Epic Role playing
  47. echo Adventure game, LANDS OF LORE: THE THRONE OF CHAOS.
  48. echo In order to run this demo, it must be installed to your hardrive
  49. echo (either C,D, or E).   Please be sure that you have at least TWO
  50. echo megabytes of free space available before continuing.
  51. echo.
  52. echo When you are ready to install, please type :
  53. echo.
  54. echo.
  55. echo LOLDEMO C:
  56. echo.
  57. echo.
  58. echo.If you wish to install to a drive other than C:, replace the "C:" with
  59. echo another drive letter instead.
  60. echo.
  61. echo.To find out more about LANDS of LORE, or other Westwood Studios products,
  62. echo.you may call our Bulletin Board System at 702-368-2319.
  63. goto quit
  64.  
  65. :quit
  66.  
  67.