home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / DROPDOS1.ZIP / MULTLINE.DOC < prev    next >
Text File  |  1994-09-18  |  3KB  |  42 lines

  1. Multi-Line Setup Instructions for PcBoard (other systems may apply too)
  2. -------------------------------------------------------------------------------
  3.  
  4.     This door is relatively easy to set up on a multi-node system. I set mine
  5. up using PcBoard Ver 15.2 software in about 5 minutes.  If you followed the
  6. instructions in PCB and set up your different nodes as directories under the
  7. PCB subdirectory called node1, node2, node3, etc, then you can apply this
  8. example directly. If you used different names, change the lines accordingly.
  9. I'm assuming that you've already set your board up as multi-node and it works
  10. correctly. Do this before continuing.
  11.     I went into pcbsetup program and went to the configuration file for the
  12. doors.  I used an empty slot (on my system it was 5) and put the name DROP in
  13. the first column. Fill in the rest accordingly with whatever you feel is
  14. necessary for your system. In the column that says "shell" I put Y. In the
  15. directory I put c:\pcb\drop  This directory is the location of the files that
  16. are in the Drop 2 DOS door main archive. After you've done that and saved your
  17. new configuration file, go into the DROP directory, or wherever you put the
  18. Drop 2 DOS door files, and make a small batch file called DROP.  Do not put BAT
  19. as the extension as in DROP.BAT.  Just put DROP.  (I'm assuming again that you
  20. understand how to make batch files..if you do not, consult your DOS manuals.)
  21. Inside this batch file put the following lines (Remember, where your names
  22. differ, change them accordingly..or drive letters, etc):
  23.  
  24. @echo off
  25. cd \pcb\drop
  26. drop.exe %PCBDRIVE%%PCBDIR%\
  27. %PCBDRIVE%
  28. cd %PCBDIR%
  29.  
  30. In PcBoard, PCBDRIVE and PCBDIR are global variables that signify the drive and
  31. directory that are associated with the node trying to load this door. So if you
  32. are on node 2, the second command would be substituted as:
  33.   drop.exe c:\pcb\node2   (This is on my system, your node 2 might be in a
  34. different directory or a different drive).  The above works fine for PCBoard,
  35. for the other BBS packages consult your BBS manual, to determine what global
  36. variables it uses to pass information like this. Yours might be %1 or %2, etc.
  37. Determine that, and enter that information above. What needs to occur here is
  38. that drop.exe needs to know where the appropriate drop file is going to be. If
  39. you have it set wrong, you will see a message flashed saying "Critical Error
  40. [OPENDOORS]: Door information file missing." If you get that error, check your
  41. batch file.
  42.