home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / MISC / ZREG143.ZIP / REGISTRY.TXT < prev    next >
Text File  |  1998-03-18  |  9KB  |  191 lines

  1.                           Zephyr User Registry v1.43
  2.               Copyright (c) 1998 Zephyr Computer Enterprises
  3.  
  4.  
  5. ╔══════════════╗
  6. ║ ∞ Overview ∞ ║
  7. ╚══════════════╝
  8.    The Zephyr User Registry is a baja module written exclusively for 
  9. Synchronet Bulletin Boards.  It is a quick and easy way for your users to
  10. get to know eachother.  The easy menu selections will make it easy for 
  11. your users to fill out their profiles, and the individually loading modules 
  12. will allow you to execute various features of the registry independently.  
  13. It also allows your users to select different colors to be displayed for 
  14. their chat handles.  (If you are using the default chat program the comes 
  15. with Synchronet).  You may also edit other user's profiles if you are a 
  16. sysop (level 90 and above or have flag 4G).
  17.  
  18. ╔════════════════════╗
  19. ║ ∞ Files Included ∞ ║
  20. ╚════════════════════╝
  21.    The following files should be included in ZREG143.ZIP.  If some or all
  22. of the files are missing you can download a complete copy from Ethereality
  23. BBS at 818.884.6700, or telnet to telnet://ebbs.dynip.com.
  24.  
  25.      ∙ REGISTRY.BIN    -    The Registry Main Menu
  26.      ∙ REGISTRY.SRC    -    Baja Source for the Main Menu
  27.      ∙ BROWSE.BIN      -    Look Up User's Registry
  28.      ∙ MAKE-REG.BIN    -    Fill Out Registry
  29.      ∙ UPDATE.BIN      -    Update/Edit Registry and Staff Module
  30.      ∙ COLOR.BIN       -    Changes Chat Handle Color
  31.      ∙ COLOR.SRC       -    Baja Source for Changing Chat Handle Color
  32.      ∙ REGISTRY.TXT    -    This File
  33.      ∙ ORDER.TXT       -    Order Form
  34.      ∙ HISTORY.TXT     -    History of Features
  35.      ∙ REGISTRY.ANS    -    Main Registry Menu (ansi)
  36.      ∙ REGISTRY.ASC    -    Main Registry Menu (ascii)
  37.      ∙ REG-EDIT.ANS    -    Staff Editing Menu (ansi)
  38.      ∙ REG-EDIT.ASC    -    Staff Editing Menu (ascii)
  39.      ∙ EBBSAD.ANS      -    Advertisement for Ethereality BBS (ansi)
  40.      ∙ EBBSAD.ASC      -    Advertisement for Ethereality BBS (ascii)
  41.      ∙ ACCESS1.DAT     -    Sample Access Data File
  42.      ∙ FILE_ID.DIZ     -    Descriptoin file for a BBS
  43.  
  44.  
  45. ╔══════════════════╗
  46. ║ ∞ Installation ∞ ║
  47. ╚══════════════════╝  
  48.    To install the Zephyr User Registry simply create a directory called
  49. X:\SBBS\EXEC\ZEPHYR\REG and unzip ZREG143.ZIP into it.  Then copy the menu 
  50. files into the default menu directory.  (Unless this has been changed it 
  51. will be X:\SBBS\TEXT\MENU.)  (X = your drive letter)
  52.         
  53.      To load the Registry as an external program..
  54.         
  55.         ╔════════════════════════════════════════════════════════╗
  56.         ║                 Zephyr User Registry                   ║
  57.         ╠════════════════════════════════════════════════════════╣
  58.         ║  │Name                       Zephyr User Registry      ║
  59.         ║  │Internal Code              Z-REG                     ║
  60.         ║  │Start-up Directory         X:\SBBS\EXEC\ZEPHYR\REG   ║
  61.         ║  │Command Line               *REGISTRY                 ║
  62.         ║  │Clean-up Command Line                                ║
  63.         ║  │Execution Cost             None                      ║
  64.         ║  │Access Requirements                                  ║
  65.         ║  │Execution Requirements                               ║
  66.         ║  │Multiple Concurrent Users  Yes                       ║
  67.         ║  │Intercept I/O Interrupts   No                        ║
  68.         ║  │Swap BBS out of Memory     Yes                       ║
  69.         ║  │Modify User Data           No                        ║
  70.         ║  │Execute on Event           No                        ║
  71.         ║  │BBS Drop File Type         None                      ║
  72.         ║  │Place Drop File In         Node Directory            ║
  73.         ║  │Time Options...                                      ║
  74.         ╚════════════════════════════════════════════════════════╝
  75.   
  76.    To load it from another menu, such as the DEFAULT.SRC, simply add the    
  77. following lines of code:
  78.  
  79.         cmdkey R
  80.             exec_bin .\zephyr\reg\registry
  81.             end_cmd
  82.  
  83. Then recompile the SRC file. (See the BAJA.DOC for more inforation on editing 
  84. baja source files.)
  85.    
  86.    To allow your users to choose a color for their chat handles then you must 
  87. be using the default chat program that comes with Synchronet.  Add the 
  88. following lines of code in every module or command shell that calls the chat 
  89. function.  (The most important part is that COLOR.BIN is executed before the
  90. call to the chat funcion.)
  91.  
  92.         cmdkey C
  93.             exec_bin .\zephyr\reg\color
  94.             chat_section
  95.             end_cmd
  96.  
  97.    Because of the ability to load any of the modules individually you can do 
  98. such things as ensuring that each user fills out their user profile during
  99. the new user logon.  (Set up MAKE-REG.BIN as a new user logon event.)  Or
  100. allow them to be executed as chat actions.  (The action string would be: 
  101. "k@EXEC:ZEPHYR\REG\BROWSE@")
  102.  
  103.    To display the access level in a browse, setup the ACCESS.DAT file.  A
  104. sample file has been included and may be edited.  The format of this file 
  105. is: 
  106.  
  107. (Access Level)   99
  108. (Access String)  a Sysop
  109.  
  110. A blank line will signify the end of readable data.  (Make sure the file is
  111. called ACCESS.DAT or it will not work correctly.)
  112.  
  113.    The baja source code has been include for REGISTRY.SRC and COLOR.SRC so
  114. you can decide if you want your users to be able to remove their profiles
  115. or not, and so that you can customize the format of the chat handle colors.
  116.  
  117. ╔═════════════════════════╗
  118. ║ ∞ General Information ∞ ║
  119. ╚═════════════════════════╝   
  120.    The Registry will create a file called REGISTRY.DAT in the 
  121. X:\SBBS\EXEC\ZEPHYR\REG directory.  This is where all of the user information 
  122. will be stored.  The Registry will use 250 bytes for each user in the 
  123. following matter:
  124.  
  125.      Alias         -   25
  126.      Number        -    4
  127.      Sex           -    6 
  128.      Age           -    3
  129.      Orientation   -    8
  130.      Hair          -    9        
  131.      Type          -   12
  132.      Eyes          -    9
  133.      Location      -   25
  134.      Height        -    5
  135.      Weight        -    3
  136.      Availablity   -   24
  137.      Race          -   15
  138.      Memo          -   35
  139.      Color         -    7
  140.      Extra         -   60
  141.  
  142.  
  143. ╔═══════════════════════════════╗
  144. ║ ∞ Disclaimer and Use Policy ∞ ║
  145. ╚═══════════════════════════════╝
  146.    The Zephyr User Registry has been through extensive ßeta testing and is
  147. currently running on Ethereality BBS.  The use of this product constitutes
  148. your agreement and acceptance of these terms and conditions.  Zephyr 
  149. Computer Enterprises claims no liability for any damages resulting directly 
  150. or indirectly from the use of this product.  There are no guarantees that 
  151. this product will produce the desired effects on your system, or that it is 
  152. error-free.  In no event shall Zephyr Computer Enterprises' liability exceed 
  153. the amount paid to us for the use of the software.
  154.    
  155.  
  156. ╔══════════════════╗
  157. ║ ∞ Registration ∞ ║
  158. ╚══════════════════╝   
  159.    The Zephyr User Registry is Shareware and may be distributed in it's 
  160. original, unaltered form of ZREG143.ZIP.  To register, please fill out the
  161. registration form and send it along with $5 (or your countries equivalent) 
  162. to the P.O. Box below.  Make checks/money orders out to Danny Johnson.  Until
  163. you register this program there will be a five second delay along with an 
  164. unregistered message.  The commands that allow a sysop to edit another user's
  165. profile will not function in the shareware version.  With your registration 
  166. you will recieve all future versions of the Zephyr User Registry free of 
  167. charge.
  168.  
  169. ╔══════════════════════════╗
  170. ║ ∞ Feedback and Support ∞ ║
  171. ╚══════════════════════════╝   
  172.    If you have any questions, comments, or would like to tell us what you
  173. think of our products, then please contact us at:
  174.  
  175.         Snail Mail      - (Do Not Put A Name Here)
  176.                           P.O. Box 4574
  177.                           West Hills, Ca
  178.                           91308-4574
  179.  
  180.         Internet E-mail - Send feedback to either of the sysops on the
  181.                           Ethereality BBS Webpage.
  182.  
  183.         Or call         - Ethereality BBS 818.884.6700 
  184.                           (telnet://ebbs.dynip.com) Log on as TECH-SUPPORT 
  185.                           and leave feedback to the sysop.  (Feel free to 
  186.                           make a NEW account on our system at any time!
  187.                           We have MANY awesome online features!)
  188.  
  189.    Please check out the Ethereality BBS Webpage at http://ebbs.dynip.com 
  190.    for any information about new products or versions.
  191.