home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / DREAD2P.ZIP / INSTALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1995-10-22  |  2.6 KB  |  73 lines

  1. @ECHO OFF
  2. cls
  3. echo                            DR. DREAD!!
  4. echo          An Awesome Color Animated ANSI Adventure Game!!!!!!
  5. echo          Multi-Player, Player Challenges, Traveling & Chat!!
  6. echo         -----------------------------------------------------
  7. echo         -----------------------------------------------------
  8. if not exist installg.exe goto dead
  9. if "%1" == "new" goto one
  10. if "%1" == "upgrade" goto two
  11. if "%1" == "" goto exit
  12.  
  13. :dead
  14. echo **** Installation has already been performed.
  15. echo You must unarchive the dread*.zip file to reinstall.
  16. goto end
  17.  
  18. :exit
  19. echo ***** PLEASE RUN THE INSTALLATION WITH:
  20. echo If you are installing for the first time or upgrading from
  21. echo a version prior to 1.9, please type:
  22. echo install new
  23. echo If you are installing an upgrade, please type:
  24. echo install upgrade
  25. goto end
  26.  
  27.  
  28. rem *************************************** FIRST TIME INSTALL
  29. :one
  30. installg new
  31. cls
  32. goto success
  33.  
  34. rem *************************************** UPGRADE
  35. :two
  36. installg upgrade
  37. cls
  38. goto success
  39.  
  40. rem ***************************************
  41.  
  42. :success
  43. echo         --------------------------------------------------
  44. echo         --------------------------------------------------
  45. echo Read the SYSOP1 & 2 .DOC files if you have not done so.
  46. echo A sample.bat file for calling DREAD.EXE is included.
  47. echo The name of the file is sample.bat. Please refer to it
  48. echo for calling DR. DREAD from your node directory.
  49. echo         --------------------------------------------------
  50. echo A sample configuration file is included for those who
  51. echo REQUIRE it. If the game works fine when installing, you
  52. echo probably do not need to use the configuration file at all
  53. echo and do not need to even look at it.
  54. echo         --------------------------------------------------
  55. echo The sample.bat file tells how you must pass parameters on
  56. echo the command line for calling DR. DREAD IE: Call the
  57. echo .exe, pass the drop file path and name, pass the node #, optionally
  58. echo pass the name of the configuration file. Drop file and node
  59. echo number must be passed even for single line BBS's.
  60. echo --------------------------------------------------------------
  61. echo DREAD c:\bbs\node1\dorinfo1.def 1 dread.cfg
  62. echo --------------------------------------------------------------
  63. echo FOR SYSOP MODE: DREAD sysop
  64. echo --------------------------------------------------------------
  65. pause
  66. echo Maintenance MUST BE RUN IN A NIGHTLY BATCH FILE.
  67. echo PUT THIS IN YOUR MAINTENANCE BATCH FILE: 
  68. echo cd\dread                    -- your path to dread files
  69. echo dread maint
  70. goto end
  71.  
  72. :end
  73.