home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac / wall093.zip / WALL.DOC < prev    next >
Text File  |  1994-06-26  |  12KB  |  300 lines

  1.  
  2.  
  3.                     ****************************************
  4.                            ATLANTIS SOFTWARE PRESENTS
  5.                     ****************************************
  6.  
  7.                               THE WALL OF WISDOM
  8.  
  9.                                  Version 0.93
  10.  
  11.                        Copyright (c) 1994   By Jimmy Rose
  12.                     ****************************************
  13.  
  14.  
  15.  
  16.  
  17.                              SHAREWARE NOTICE
  18.                        ________________
  19.  
  20.     The Wall Of Wisdom is being distributed as shareware. If you
  21.     enjoy this program please register it. Whenever you find any
  22.     shareware Program that you like and find useful, please consider
  23.     registering. This will help encourage future developement of
  24.     other useful programs and also ensure that your favorites will
  25.     be supported and enhanced. 
  26.  
  27.  
  28.  
  29.                                 INTRODUCTION
  30.                                 ____________
  31.  
  32.         The Wall Of Wisdom is a BBS door where users can write their
  33.         thoughts and have them displayed to the next several callers.
  34.     It is a very popular feature on many BBS's.
  35.     Features include:
  36.     
  37.     * User can write in his/her choice of colors!
  38.     * Can be run at logon, Main Menu, Door Menu, or all three.
  39.         * Written in C++ for speed and efficency.
  40.         * Supports Com0-Com15.
  41.     * Support BBS for questions, comments, or help setting up.
  42.         * Sysop utility for editing any user comment!
  43.     * Low registration fee! ($8 + $2 P/H)
  44.  
  45.        
  46.                            REGISTRATION & SUPPORT
  47.                            ______________________
  48.  
  49.         The Wall of Wisdom will be supported indefinately. The latest
  50.         shareware version will always be available for download from
  51.         The Prophecy BBS (513) 423-2336 (14400).
  52.         It is a free download on your first call.
  53.     For registration information see the file "order.txt".
  54.  
  55.         If you have any comments, suggestions, or features you'd like
  56.         to see added to The Wall of Wisdom, please write or send E-mail.
  57.         I want to hear your ideas. All questions as will be answered as
  58.         quickly as possible. This shareware version has less colors 
  59.     to choose from than the registered version and does not include
  60.     the sysop utility for editing the wall. The Registered version
  61.     displays the BBS name at the top of the screen, offers a choice
  62.         of Thirteen colors, and includes the sysop utility.
  63.     
  64.  
  65.                             REQUIREMENTS
  66.                                 ____________
  67.  
  68.         You need an IBM compatible computer and a BBS. The Wall of
  69.         Wisdom will work with TriBBS, Wildcat, PC Board, Spitfire,
  70.         RBBS, WWIV, Gap, Renegade, Remote Access, and other BBS's
  71.         that can run one of these door types.
  72.         It is assumed that you are familiar with your BBS software
  73.         and have installed other doors. If not, step by step instructions
  74.         are provided for some boards. This program may also be run in
  75.         local mode without a BBS (see below).
  76.  
  77.  
  78.                                 INSTALLATION
  79.                                 ____________
  80.  
  81.         Create a directory for The Wall of Wisdom. Preferably in your
  82.         BBS directory. You can name it whatever you want. For example,
  83.         if you want to create a directory called "wall" in your BBS
  84.         directory, from the Dos prompt type "cd c:\bbs", then type
  85.         "md wall". Don't type the quotation marks.
  86.         This assumes your BBS is on your c: drive. If it's on another
  87.         drive, substitute the appropriate letter.
  88.  
  89.         After you create the directory, unzip the archive contents
  90.         into it. Next you'll need to create a configuration file or modify
  91.         the "wall.cfg" file included with the archive. This is an ascii
  92.         text file that can be created or edited with any text editor.
  93.         The configuration file MUST be in the same directory as The
  94.         Wall of Wisdom. It has the following format:
  95.  
  96.                 Line 1:  Door data type (see below)
  97.                 Line 2:  Path to Door data file (dropfile)
  98.                 Line 3:  BBS name
  99.                 Line 4:  Sysop's name
  100.                 Line 5:  Locked baud rate
  101.  
  102.         Line 1 is the Door data file type and can be any of the following
  103.         TRIBBS for TriBBS                    ; TRIBBS.SYS
  104.         PCB    for PC Board                  ; PCBOARD.DAT, PCBOARD.SYS
  105.         GAP    for Gap                       ; DOOR.SYS
  106.         SF     for Spitfire                  ; SFDOORS.DAT
  107.         RBBS   for RBBS                      ; DORINF0#.DEF
  108.         WC     for Wildcat                   ; CALLINFO.BBS
  109.         WWIV   for WWIV                      ; ????????.???
  110.  
  111.         * Note that TriBBS can run doors with any of the configuration
  112.           dropfiles above. Remote Access may use either GAP or RBBS.
  113.           Other BBS packages may work with multiple dropfiles, but
  114.           make sure you choose only one.
  115.  
  116.         The other lines should be self-explainatory. Here's a sample
  117.         config file:
  118.  
  119.                 TRIBBS
  120.                 c:\tribbs\
  121.                 The Prophecy
  122.                 Jimmy Rose
  123.                 38400
  124.  
  125.         This would configure The Wall of Wisdom to run on a TriBBS
  126.         system. It assumes the BBS is in the "tribbs" directory and
  127.         the serial port has been locked at 38400. If you lock the serial
  128.         port at some other speed, change the setting to the appropriate
  129.         baud rate. If you do not lock the serial port, this line MUST
  130.         contain a 0. Other Sample configuration files can be found at the
  131.         end of this file.
  132.  
  133.         The next step is to create a batch file to call the door. Each
  134.         BBS is different, so it's assumed you know how to create one
  135.         for your system. Here's a sample batch file for TriBBS:
  136.  
  137.                 cd c:\tribbs\wall
  138.                 wall wall.cfg
  139.                 cd c:\tribbs
  140.                 board
  141.  
  142.         The first line changes to the directory where The Wall of Wisdom
  143.     is located.
  144.         The second line calls the door followed by the configuration file.
  145.         You MUST include the name of the configuration file, although you
  146.         can name it anything you like.
  147.         The third and fourth lines return you to the board.
  148.         Each system will be a little different, the one line that will
  149.         be same for every batch file is the second one.
  150.         Finally, edit your bbs files to display the door name and call
  151.         the batch file when selected. You're on your own here!
  152.  
  153.     The Wall of Wisdom supports nonstandard IRQ's for the serial 
  154.     port. Simply place the com port number on the command line after
  155.     the name of the configuration file. The range of values is 0-15.
  156.     
  157.         The Wall of Wisdom can easily be run from your Main Menu on
  158.         systems with extendable menus and/or from your logon.bat. It can
  159.     also be ran from the Door Menu just like any other door.
  160.     It is recommended you do run the program from both your logon.bat 
  161.     file if your system supports this and also from either the Main 
  162.     Menu or    the door Menu.
  163.  
  164.         To set up The Wall of Wisdom as a Main Menu item on a Tribbs
  165.         system, name the above batch file "mainh", then edit your
  166.         main.mnu file to call the batch file by adding the following
  167.         line:
  168.         H,H,Wall of Wisdom,20
  169.  
  170.         This will call up The Wall of Wisdom whenever the letter H is
  171.         selected from the Main Menu. You may use any availabe letter
  172.         that you like, just substitute the letter you want to use for
  173.         the letter H in all instances above, including the batch file
  174.         name. The number at the end of the line is the minumum security
  175.         level a user must have to be able use The Guest Registry. Adjust
  176.         this to your liking.
  177.  
  178.     To execute The Wall of Wisdom at logon, name the above batch file
  179.     "logon.bat".
  180.  
  181.                                  OPERATION
  182.                                  _________
  183.  
  184.         The Wall of Wisdom may be run locally if you wish. If you want
  185.         to run the door without going through the BBS, make the directory
  186.         where the program is stored the current directory. From the Dos
  187.         prompt type "wall wall.cfg local". You will prompted to enter a
  188.         user name. Whatever name you type in will be used for your Alias.
  189.  
  190.         When The Wall of Wisdom loads it will automatically display the
  191.         wall. The very first time it is run, you will see an error message
  192.         because there is no data yet. Just hit ENTER and the program will
  193.         continue execution.
  194.  
  195.         You will be asked if you want to write on the wall. Pressing "Y"
  196.         brings up a screen where you choose the color to write in and enter
  197.         your phrase. There are Thirteen colors to choose from in the
  198.         Registered version. The Shareware version limits you to the first
  199.         four.
  200.  
  201.         Just choose a color and write!
  202.         That's all their is to it.
  203.  
  204.  
  205.  
  206.  
  207.         Common Problems:
  208.  
  209.         "It looks fine on the sysop end, but users only see garbage on the
  210.         screen when they enter the door".
  211.         This is always a configuration error. If your serial port is locked,
  212.         change the last line in The Guest Registry configuratiion file the
  213.         rate at which you lock your serial port. If the serial port is not
  214.         locked, the setting MUST be 0.
  215.         Also, make sure your RTS/CTS flow control is on in your node config.
  216.  
  217.         "It runs fine, but it's not in color".
  218.         Try using a different drop file.
  219.  
  220.  
  221.                          SAMPLE CONFIGURATION FILES
  222.                          --------------------------
  223.  
  224.         ________________________________________
  225.         Spitfire.cfg:
  226.  
  227.                 SF
  228.                 c:\spitfire\
  229.                 The Haven
  230.                 Eric Carr
  231.                 0
  232.         ________________________________________
  233.         pcboard.cfg:
  234.  
  235.                 PCB
  236.                 c:\pcbbs\
  237.                 Consultant's BBS
  238.                 Joe Comm
  239.                 14400
  240.         ________________________________________
  241.         wildcat.cfg:
  242.  
  243.                 WC
  244.                 c:\bbs\
  245.                 The Academy
  246.                 Madmaggie
  247.                 38400
  248.         ________________________________________
  249.         gap.cfg
  250.  
  251.                 GAP
  252.                 c:\bbs\
  253.                 Salt Lake BBS
  254.                 Martha Mormon
  255.                 9600
  256.         ________________________________________
  257.  
  258.  
  259.                                     NOTES
  260.                                     _____
  261.  
  262.         I wrote this program because this is the type of wall writer I
  263.     wanted on my BBS, The Prophecy. I like being able to choose
  264.     which color to write in and being able to edit anything written
  265.     on the wall, should I need to do so. I don't like the large
  266.     multiple line walls because they only display the last 3 or 4
  267.     comments posted and I didn't like the other color walls that I
  268.     checked out because of the color schemes.
  269.  
  270.         Thanks to Martin Wheeler and Photo Finish BBS (513) 539-4439
  271.         for serving as distributation and test site for The Guest
  272.         Registry and other Atlantis Software products.
  273.  
  274.         This program was written in C++ using Borland Turbo C++ and the
  275.         Tridoor library (c) by Mark Goodwin.
  276.  
  277.         If you have any questions, comments, or suggetions please write
  278.         to:
  279.  
  280.                 Jimmy Rose
  281.                 2000 Linden ave.
  282.                 Middletown, OH 45044-4435
  283.                 USA
  284.  
  285.         Or call the Home of Atlantis Software:
  286.         The Prophecy BBS (513) 423-2336. 24 hours a day. 14400.
  287.  
  288.         Voice support is available to REGISTERED users.
  289.         
  290.  
  291.         If you do have a problem and call or write, please be prepared to
  292.         provide the following information:
  293.         > Wall of Wisdom version number.
  294.         > BBS Software & version number.
  295.         > Serial port used? (locked?, rate?).
  296.         > Any thing else "specific" to your problem.
  297. *****************************************************************************
  298.            THANKS FOR TRYING THE WALL OF WISDOM!
  299. *****************************************************************************
  300.