home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / BBS_UTIL / WHOSON12.ZIP / WHOS_ON.DOC < prev    next >
Text File  |  1994-01-13  |  8KB  |  193 lines

  1.                                  DISCLAIMER
  2.  
  3.     Funky Stuff Software, Inc. and/or Kevin Kogan makes no warranty of any 
  4.     kind, either expressed  or  implied,  including  but  not  limited  to 
  5.     implied  warranties  of  merchantability and  fitness for a particular
  6.     purpose, with respect to  this software and accompanying documentation.
  7.  
  8.     IN  NO EVENT  SHALL FUNKY STUFF SOFTWARE AND/OR KEVIN  KOGAN  BE LIABLE
  9.     FOR ANY  DAMAGES ( INCLUDING  DAMAGES  FOR  LOSS  OF  BUSINESS PROFITS,
  10.     BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY
  11.     LOSS)  ARISING  OUT  OF THE  USE  OF  OR  THE  INABILITY  TO  USE  THIS
  12.     PROGRAM,  EVEN  IF  FUNKY STUFF SOFTWARE  AND/OR  KEVIN KOGAN  HAS BEEN 
  13.     ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  14.  
  15.     This  package is  released as shareware which  grants the user a 30 day
  16.     trial period for the purpose of evaluation.   Afterwhich,  they user is
  17.     required to meet the terms of registration.
  18.  
  19.     By use of this software,  the user agrees to  unconditionally except the
  20.     the terms of this agreement.
  21.  
  22. ________________________________________________________________________________
  23.  
  24.  
  25.                                 WHO'S ON? v1.0
  26.                     Copyright (c) 1994 Funky Stuff Software
  27.  
  28.  
  29.    Who's On? is a sysop Windows 3.1 (No!...that's NOT a misprint) utility
  30.  that keeps a multi-node display, of the current on-line callers, in the botton
  31.  corner of the screen, while your are working with any standard (DOOR.SYS) BBS
  32.  in the background.   Yes folks, there NOW is a Windows utility for DOS based 
  33.  BBS's.....what next?...lower taxes?
  34.  
  35.    TO INSTALL:
  36.      1) You will need a copy of VBRUN300.DLL in your DOS path
  37.      2) Copy WHOS_ON.EXE and WHOS_.INI to your Windows directory
  38.      3) Copy *.VBX to your Windows SYSTEM directory (which SHOULD be in
  39.         your DOS path.
  40.      4) Create an icon for Who's On? by either selecting "New Program
  41.         Item" and setting the paths to your Windows directory or
  42.         just drag the WHOS_ON.EXE from the File Manager to a Program
  43.         Manager group (Like the StartUp group?) and the icon and path
  44.         will be created automatically. Oh joy!
  45.      5) You'll then need to configure Who's On? to you system and taste
  46.         by editing the WHOS_ON.INI which should be in your Windows
  47.         directory BY NOW! 
  48.          
  49.         The INI layout is as follows:     
  50. _____________________________________________
  51.  
  52. [Whoson]  <<<< DO NOT CHANGE THIS TITLE!
  53.  
  54. Registration=XXXXXXXXX
  55. Bell=N
  56. Clock=N
  57. OnTop=Y
  58. Nodes=2 
  59. Delay=30
  60. BBSType=WILDCAT
  61. Node1Path=C:\WC30\WCWORK\NODE1\DOOR.SYS
  62. Node2Path=C:\WC30\WCWORK\NODE2\DOOR.SYS
  63.   "    "     "      "      "     "
  64. ______________________________________________
  65.    
  66.  
  67. Registration - This is where your registration
  68.                code goes once you have registered
  69.                via the registration instructions. 
  70.  
  71. Bell - determines whether a "ding" will
  72.        occur at each user logon (Y or N)
  73.        (bell only available in reg'd version)
  74.  
  75. Clock - determines whether the time will
  76.         be displayed below the caller names (Y or N)
  77.  
  78. OnTop - determines whether the display will
  79.         stay on top of all other apps (Y or N)
  80.  
  81. Nodes - Number of active nodes (the unregistered
  82.         version only allows a max of two (1 or 2))
  83.         Reg'd version allows up to 10 nodes!
  84.  
  85. Delay -  is the delay (in seconds) between
  86.          caller updates (10 - 120) 
  87.  
  88. BBSType - must equal one of the following:
  89.             WILDCAT   (DOOR.SYS only)
  90.             GENERIC   (DOOR.SYS) If it's not WC!...it is generic! ;-)
  91.  
  92. Node#Path - must equal the complete path 
  93.             (including the DOOR.SYS) to the 
  94.             drop file for each of the nodes as set
  95.             by the Nodes = setting
  96. (NOT IN THE DOOR.SYS PATH THAT YOU SET IN THE INI FILE!!!!)
  97.  
  98. IMPORTANT:
  99. All "values" MUST be in all capitals or whole numbers.
  100. Changing anything other than the values on the right side of the
  101. equals sign will result in failure....or even GPFs!! Ahhh!!!!!!
  102. DO NOT insert any spaces in any of the statements.
  103.  
  104.  
  105.  
  106.      6) Finaly, you will need to creat/modify some batch files as instructed
  107.         below.
  108.  
  109. You MUST make sure that there is some kind of LOGIN1.BAT & POSTCALL.BAT
  110. that are executed when a caller logs on and logs off respectivly and that
  111. they create and delete the DOOR.SYS respectivly.  If you don't have them 
  112. already,just make them per the example below otherwise, the program won't
  113. be able to "see" who is on until a door is executed...Ewww...Ahh...Oh
  114. ...now I get it! <G>
  115.  
  116. WILDCAT! example:
  117. 1) Create a temp directory off of WC30 as C:\WC30\WHOSON
  118. 2) Then make a subdirectory for each node that you will want WhosOn to
  119.    monitor (ie C:\WC30\WHOSON\1 and C:\WC30\WHOSON\2)
  120. 3) Create a LOGIN1.BAT for each node and have the following statement:
  121.    @ECHO OFF
  122.    COPY DOOR.SYS C:\WC30\WHOSON\(#) 
  123.    replacing the (#) with the node number, of cource!
  124.    Or just add the line to each LOGIN1.BAT if you already have it.
  125. 4) Then create or edit the POSTCALL.BAT to included the following:
  126.    @ECHO OFF
  127.    DELETE C:\WC30\WHOSON\(#)\DOOR.SYS
  128.    This also must be done for each active node.
  129.  The paths that you specify in the BAT's are the ones you need to use in the INI
  130.  file for the "Node#Path=" statements. (ie Node1Path=C:\WC30\WHOSON\1\DOOR.SYS)
  131.  If the specified path(s) do not exist for each node of the "Nodes =" statement 
  132.  when you run Who's on?, then the program will exit.
  133.  
  134.  This might all sound a little complex but the final result is that the DOOR.SYS
  135.  will be create when the user signs on and then deleted when they sign off and
  136.  be kept in a private directory for Who's On? to have all to itself.
  137.  
  138. RENEGADE example:
  139.    You will need to do basically the same thing but you just add the batch names
  140.    to your menus with the DG command.
  141.    LOGIN1.BAT would go in the first menu following logon and the POSTCALL.BAT should
  142.    go in the goodbye screen. And of cource, your root directory wouldn't be WC30...pitty.
  143.  
  144. ALL OTHERS:
  145.    As long as the software uses the "standard" DOOR.SYS, just follow the basic objective
  146.    of what the WILDCAT example describes or go out and GET WILDCAT!.
  147.  
  148.  
  149. The "Delay" determines how often the display is update to the current "node status".
  150. A 30 second delay (30) is usually fine for most most situations. 
  151.  
  152. To exit the program (I don't know why you would want to) just double click (no...sorry,
  153. clapping twice won't do it. <sigh> But if you register?...who knows?) on the white part
  154. of the display and you'll be prompted accordingly. It's THAT simple!
  155.  
  156. In case you didn't catch it way up there^^^....
  157. This program is copyrighted 1994 Funky Stuff software and is shareware whichs grants
  158. you a 30 day trial period afterwhich you are required to register if you use it more than
  159. 30 days. (Or, if you just like giving money to a nice person who needs to support his
  160. Diet Coke habit!)  ;-)
  161.  
  162. See...and you thought YOU were the only one running a BBS under Windows...
  163. now there's three of us! <G>
  164. I have been running WC under Windows, problem free, for over a year and
  165. an half now on a 386-40 with 4 megs....go figure! 
  166.  
  167. Any questions, suggestions, comments, or otherwise, you may contact be at:
  168.  
  169. Kevin Kogan 
  170. 8 Ocean Pines
  171. Berlin, MD 21811
  172. (410) 208-1539
  173. CIS 73003,3412   
  174.  
  175. For registration information--please see REGISTER.TXT (included in WHOSON10.ZIP)
  176. Or contact me at the above if the file is missing.
  177.  
  178. And please let me know of ANY problems so I may correct then ASAP.
  179.  
  180. Registartion cost: $9.00 US for a single non-commercial usage
  181.  
  182. The next version (depending on support received) may include:
  183.    The callers "time remaining". 
  184.    A drop down menu of the last 10 callers for each node.
  185.    And more all in the same size display! 
  186.  
  187.  
  188. Thanks to James Shields for his great INICON2 control.
  189.  
  190. Wildcat! is a registerd trademark of the wonderfull folks at MSI
  191.  
  192. Diet Coke is a registered trademark of the Coca-Cola Co. <G>    
  193.