home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- cls
- echo DR. DREAD!!
- echo An Awesome Color Animated ANSI Adventure Game!!!!!!
- echo Multi-Player, Player Challenges, Traveling & Chat!!
- echo -----------------------------------------------------
- echo -----------------------------------------------------
- if not exist installg.exe goto dead
- if "%1" == "new" goto one
- if "%1" == "upgrade" goto two
- if "%1" == "" goto exit
-
- :dead
- echo **** Installation has already been performed.
- echo You must unarchive the dread*.zip file to reinstall.
- goto end
-
- :exit
- echo ***** PLEASE RUN THE INSTALLATION WITH:
- echo If you are installing for the first time or upgrading from
- echo a version prior to 1.9, please type:
- echo install new
- echo If you are installing an upgrade, please type:
- echo install upgrade
- goto end
-
-
- rem *************************************** FIRST TIME INSTALL
- :one
- installg new
- cls
- goto success
-
- rem *************************************** UPGRADE
- :two
- installg upgrade
- cls
- goto success
-
- rem ***************************************
-
- :success
- echo --------------------------------------------------
- echo --------------------------------------------------
- echo Read the SYSOP1 & 2 .DOC files if you have not done so.
- echo A sample.bat file for calling DREAD.EXE is included.
- echo The name of the file is sample.bat. Please refer to it
- echo for calling DR. DREAD from your node directory.
- echo --------------------------------------------------
- echo A sample configuration file is included for those who
- echo REQUIRE it. If the game works fine when installing, you
- echo probably do not need to use the configuration file at all
- echo and do not need to even look at it.
- echo --------------------------------------------------
- echo The sample.bat file tells how you must pass parameters on
- echo the command line for calling DR. DREAD IE: Call the
- echo .exe, pass the drop file path and name, pass the node #, optionally
- echo pass the name of the configuration file. Drop file and node
- echo number must be passed even for single line BBS's.
- echo --------------------------------------------------------------
- echo DREAD c:\bbs\node1\dorinfo1.def 1 dread.cfg
- echo --------------------------------------------------------------
- echo FOR SYSOP MODE: DREAD sysop
- echo --------------------------------------------------------------
- pause
- echo Maintenance MUST BE RUN IN A NIGHTLY BATCH FILE.
- echo PUT THIS IN YOUR MAINTENANCE BATCH FILE:
- echo cd\dread -- your path to dread files
- echo dread maint
- goto end
-
- :end
-