home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / m / mbbsd200.arj / MULTI20.DOC < prev    next >
Text File  |  1993-02-22  |  5KB  |  154 lines

  1.                     ********************************
  2.                     * MultiBBS/Deluxe Version 2.00 *
  3.                     ********************************
  4.  
  5.  NACsoft.
  6.  Programmed by: Nick Chrzanowski
  7.                 and Stephen Harper
  8.  Programmed in Borlands Turbo Pascal 6.0
  9.  Complied: February 21st/1993 4:22pm
  10.  
  11.  -= IMPORTANT NOTICE:
  12.  
  13.  There is another BBS splitting program going around also entitled 
  14.  MultiBBS, this program was written by a certain Marc Kulak.  It is in
  15.  no way associated with this program.  NACsoft's version was written
  16.  around 3 months before Mr.Kulak's and he simply wrote his version 
  17.  out of spite for NACsoft.  Although his program seems to pose no threat   
  18.  in any way to MultiBBS/Deluxe we do not want to be thought of as 
  19.  partners to this child.
  20.  
  21.  
  22.  
  23.  -= Introduction:
  24.  
  25.  MultiBBS is a BBS splitting utility that allows the sysop to run
  26.  multiple BBS software packages from one single system.  It runs on
  27.  an errorlevel generating basis therefore it requires very little 
  28.  memory as it does not stay resident in memory.
  29.  
  30.  -= System requirements:
  31.  
  32.  An IBM PC or compatible computer with at least 128k on main board.
  33.  Two or more BBS programs currently set up.         
  34.  A fossil driver loaded into memory.
  35.  A basic knowledge of editing batch files.
  36.  Patience.
  37.  
  38.  -= Included files:
  39.  
  40.  The following files should have been included in your MULTID20 archive
  41.  
  42.  MULTI200.EXE  - MultiBBS program.
  43.  MULTI200.DOC  - This documentation.
  44.  INSTALL.EXE   - MultiBBS installation program.
  45.  SUPPORT.DOC   - List of support sites
  46.  
  47.  If you are missing any of these files please contact your nearest support
  48.  board for a new archive
  49.  
  50.  -= Disclamer
  51.  
  52.  At the time of packaging this program contained NO viruses of any kind.  
  53.  Nick Chrzanowski or anyone else involved with the creation of this program
  54.  cannot be held responsible for what it may do to your system.  
  55.  
  56.  -= Shareware concept
  57.  
  58.  This product is distributed as SHAREWARE, meaning you may use this product
  59.  free of charge for a limit of 30 days.  After this time period you must
  60.  either register this product or discontinue use.  
  61.  Please support the shareware concept.
  62.  
  63.  -= Installation
  64.  
  65.  Run the program INSTALL.EXE, select INSTALL MULTIBBS from the main menu, the
  66.  rest is self explanatory.
  67.  
  68.  -= Batch file configuration
  69.  
  70.  MultiBBS runs on an errorlevel generating basis, meaning that when called
  71.  it will display the configured menu, wait for the user to select an option, 
  72.  then depending on what the users choice was, generate the specified 
  73.  errorlevel.  This errorlevel can then be captured and used as a tag to 
  74.  load certain programs.  
  75.  
  76.  The syntax for executing MultiBBS is as follows:
  77.  
  78.  MULTI200.EXE <Comport>  
  79.  
  80.  For example, if your modem was on COM2 you would enter the following
  81.  
  82.  MULTI200 2
  83.  
  84.  
  85.  Listed below is an example batch file.  For this example MultiBBS was
  86.  configured to run two BBS packages (RemoteAccess and RoboBBS).  It was
  87.  configured that if the user selected RemoteAccess MultiBBS would return
  88.  an errorlevel 99 and if the user selected RoboBBS it would return the
  89.  errorlevel of 100
  90.  
  91.  -= Example Batch file:
  92.  
  93.  :START
  94.   @echo off
  95.   c:
  96.   cd\fd
  97.   fd.exe
  98.   if ERRORLEVEL 200 goto 2400CALLER {The Errorlevels returned by FD depending
  99.                          on baud rate detected}
  100.   if ERRORLEVEL 199 goto 1200CALLER { "     "         "       " }
  101.   goto START
  102.  
  103.  :2400CALLER  { A 2400Caller is detected}
  104.   cd\fd
  105.   multi200 2  {Loads MultiBBS - Modem on COM2}
  106.   if ERRORLEVEL 100 goto ROBO2400  {User selected RoboBBS}
  107.   if ERRORLEVEL  99 goto RA2400 {User selected RemoteAccess}
  108.   goto START
  109.  
  110.  :1200CALLER { a 1200caller is detected}
  111.   cd\fd
  112.   multi200 2
  113.   if ERRORLEVEL 100 goto ROBO1200
  114.   if ERRORLEVEL  99 goto RA2400
  115.   goto START
  116.  
  117.  :ROBO2400
  118.   cd\robobbs
  119.   robogr -b2400
  120.   goto START
  121.  
  122.  :RA2400
  123.   cd\ra
  124.   ra -b2400
  125.   goto START
  126.  
  127.  :ROBO1200
  128.   cd\robobbs
  129.   robogr -b1200
  130.   goto START
  131.  
  132.  :RA1200
  133.   cd\ra
  134.   ra -b1200
  135.   goto START
  136.  
  137.  -= Registration
  138.  
  139.  Please run INSTALL.EXE, fill out and print your registration form.  
  140.  When completed mail it and a money order or cheque for $10 to the
  141.  following address :
  142.  
  143.         NACsoft Development
  144.         c/o Nick Chrzanowski
  145.         5 Hollis Crescent
  146.         Holland Landing, Ontario
  147.         L0G1H0
  148.         CANADA
  149.  
  150. Thankyou for selecting MultiBBS/Deluxe.  
  151. You can contact NACsoft for any help or comments through any of your support
  152. boards listed in the file SUPPORT.DOC
  153.  
  154.