home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / MYBBS.ZIP / WINDOWS / DESKTOP / MYBBS / BOARD / MNODE.DOC < prev    next >
Text File  |  1996-01-01  |  2KB  |  62 lines

  1.   BOARD MASTER  /  MULTI-NODE SETUP:
  2.   ---------------------------------
  3.   Multi-node setup *will* be different for each system, however, the
  4.   following information is for general use in getting everything setup.
  5.  
  6.   Please make sure you have double checked everything on your end before
  7.   contacting us for support on multi-node setups. We have found that
  8.   95% of the time, the information contained here is sufficient enough
  9.   to get our doors up and running on your system.
  10.   
  11.   If your running a Wildcat system and cannot get our doors to run,
  12.   please call our support board and download a special Wildcat archive
  13.   called: WCHELP.ZIP. It contains specific information for Wildcat
  14.   systems.
  15.   
  16.   
  17.   
  18.   Now lets get on with it....
  19.   
  20.   Board Master is multi-node capable, but does not allow more than
  21.   1 user in the game at a time. 
  22.   
  23.   Most of the time you will need to create a seperate DOOR.CFG for each
  24.   node you have. Example: DOOR1.CFG, DOOR2.CFG, etc...
  25.   
  26.   If all of your nodes have the exact same parameters, ie. same location
  27.   for the door drop file, locked baud rate, etc... then you may use the 
  28.   same DOOR.CFG for all nodes.
  29.  
  30.   Once you have the .CFG file situated, you'll need to create your batch
  31.   file. If your using multiple door.cfg files your batch file could look
  32.   like this:
  33.  
  34.   if %1 == 1 Goto Node1
  35.   if %1 == 2 Goto Node2
  36.   Goto End
  37.  
  38.   :Node1
  39.    cd\bbs\door
  40.    bbsmstr door1.cfg
  41.    del online.flg
  42.    Goto End
  43.  
  44.   :Node2
  45.    cd\bbs\door
  46.    bbsmstr door2.cfg
  47.    del online.flg
  48.    
  49.   :End
  50.    cd\bbs
  51.    cls
  52.  
  53.  
  54.   In order for this batch file to work correctly, your BBS must pass the
  55.   node # to the batch file when it shells to execute the door. Every BBS
  56.   is different, but if you are at all familiar with your BBS you should
  57.   know what I'm talking about and how to accomplish this.
  58.   
  59.   The DEL ONLINE.FLG statements are to help ensure the flag gets deleted
  60.   in case a user drops carrier while in the game.
  61.  
  62.