home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / RA / ADDALINE.ZIP / ADDALINE.DOC < prev    next >
Text File  |  1994-03-10  |  7KB  |  187 lines

  1.  
  2.                                   ADDALine
  3.                                  Version 0.1
  4.  
  5.                           Copyright  1993  Edge Ware
  6.  
  7.                   Programmed by Joe Germann (FidoNet 1:272/47)
  8.  
  9.  
  10.  
  11. WHAT IS IT?
  12. ───────────
  13.         ADDALine is a Oneliner door written for Remote Access. I always 
  14.         liked the oneliner screens that some other BBS packages are able
  15.         to produce, And not being able to find a suitable reproduction of
  16.         this type of door, I decided to write my own version of one, Hence 
  17.         ADDALine.
  18.    
  19.  
  20.  
  21.  
  22. SHAREWARE NOTICE
  23. ────────────────
  24.         ADDALine is shareware, not freeware. If you find this program useful
  25.         and want to continue using it longer than 30 days you must register
  26.         it.  Registration is only $5.00 (US Funds) and is "one time only".
  27.         Your support will help to insure updates to this program.  Please
  28.         read REGISTER.FRM for more information.  Thanks for trying ADDALine!
  29.  
  30.  
  31. DISCLAIMER
  32. ──────────
  33.         ADDALine is guaranteed to do nothing but take up space on your hard
  34.         drive.  In no event and under no circumstances will the author of
  35.         this program be held liable for any damages including but not
  36.         limited to hardware, software, lost profits and/or savings, or any
  37.         other consequential damages arising out of your use or inability to
  38.         use this program, or for any other claims by another party.
  39.  
  40.         ADDALINE.EXE -- Main executable file
  41.         ADDALINE.CFG -- Sample Config file
  42.         ADDALINE.DOC -- This document
  43.         DORINFO1.DEF -- Sample Door Drop file
  44.         REGISTER.FRM -- ADDALine registration form
  45.  
  46.  
  47. INSTALLATION
  48. ────────────
  49.         You must make a directory and unzip the ADDALINE archive into it.
  50.         The 5 file described above should all be present.
  51.         
  52.         Then type 
  53.     
  54.         ADDALINE DORINFO1.DEF
  55.  
  56.  
  57.         3 files will be created the 1st is called ADDALINE.DAT which is a 
  58.         ASCII file of the oneliners which is editable with and ASCII editor 
  59.         such as Dos EDIT or can be edited by the SysOp while online..
  60.         The 2 other files are ADDALINE.ANS and ADDALINE.ASC the screens 
  61.         ADDALINE create..
  62.         
  63.         ADDALINE can work with the following Door drop files
  64.  
  65.         DORINFO#.DEF
  66.         DOOR.SYS
  67.         CALLINFO.BBS
  68.         SFDOOR.DAT
  69.         CHAIN.TXT
  70.         INFO.BBS
  71.         PCBOARD.SYS
  72.  
  73.         There are a few ways you can use ADDALine I will show you the way
  74.         I have it setup on my system.. I have added 2 menus to my list one
  75.         is called ADDALIN1 and the other is ADDALIN2. ADDALIN1 is called 
  76.         from my TOP menu.
  77.  
  78.         The TOP menu looks like this.. 
  79.  
  80. ╒═════════════════════════════════════════════════════════ C:\RA\MENUS\TOP.MNU ╕
  81. │                          │***│ Execute    │ *c *m /c c:\doors\urd\urd.exe    │
  82. │                          │   │ Execute    │ *c *m *! /c \ra\radd.bat *n      │
  83. │                          │   │ Post msg   │ 2 /t=Joe_Germann /l              │
  84. │                          │   │ Goto menu  │ ADDALIN1                         │
  85. │                                                                              │
  86. │                                                                              │
  87.  
  88. --------------------------------------------------------------------------------
  89.  
  90.         The ADDALIN1 menu looks like this.. With a Prompt that reads
  91.  
  92.         Wanna ADDAline (y/N)
  93.  
  94. ╒════════════════════════════════════════════════════ C:\RA\MENUS\ADDALIN1.MNU ╕
  95. │                          │   │ Display-H  │ ADDALINE                         │
  96. │                          │'N'│ Goto menu  │ TOP1                             │
  97. │                          │'Y'│ Goto menu  │ ADDALIN2                         │
  98. │                          │' '│ Goto menu  │ top1                             │
  99. │                            ^                                                 │
  100. │                         CTRL P "ENTER"                                       │
  101.  
  102. --------------------------------------------------------------------------------
  103.  
  104.         The ADDALIN2 menu looks like this..
  105.  
  106. ╒════════════════════════════════════════════════════ C:\RA\MENUS\ADDALIN2.MNU ╕
  107. │                          │***│ Execute    │ *c *M /c \ra\ONELINER.BAT *n     │
  108. │                          │***│ Goto menu  │ TOP1                             │
  109. │                                                                              │
  110. │                                                                              │
  111. │                                                                              │
  112.  
  113.         
  114.         It is very effective this way it runs right after the news screen
  115.         is displayed. You can also run it from a Questionaire which would 
  116.         also be an easy way to set it up.
  117.  
  118.         
  119. Batchfiles
  120.  
  121.         A batchfile for a single node system would be
  122.  
  123.         ONELINER.BAT
  124.         
  125.         @echo off
  126.         CD\DOORS\ADDALINE
  127.         ADDALINE C:\RA\DORINFO1.DEF
  128.         CD\RA
  129.  
  130.         The batchfile for a multinode system is
  131.  
  132.         ONELINER.BAT
  133.         
  134.         @echo off
  135.         If %1~==~goto end                
  136.         if %1==1 goto %1               
  137.         if %1==2 goto %1               
  138.         if %1==3 goto %1              
  139.         :1                            
  140.         CD\RA                            
  141.         CD\DOORS\ADDALINE
  142.         ADDALINE C:\RA\NODE1\DORINFO1.DEF
  143.         CD\RA\NODE1
  144.         GOTO END                         
  145.         :2                            
  146.         CD\RA                            
  147.         CD\DOORS\ADDALINE
  148.         ADDALINE C:\RA\NODE2\DORINFO1.DEF
  149.         CD\RA\NODE2
  150.         GOTO END
  151.         :3                           
  152.         CD\RA
  153.         CD\DOORS\ADDALINE
  154.         ADDALINE C:\RA\LOCAL\DORINFO1.DEF
  155.         CD\RA\LOCAL
  156.         :END
  157.  
  158.  
  159.  
  160. ADDALINE.CFG is the ADDALine config file, it contains 4 lines
  161.  
  162.         The Leading Edge
  163.         Joe
  164.         Germann
  165.         0000000
  166.         C:\RA\TXTFILES\ADDALINE
  167.         18
  168.         NONAME
  169.  
  170.  
  171.         Line 1:BBS Name
  172.         Line 2:SysOp's Firstname
  173.         Line 3:SysOp's Lastname
  174.         Line 4:Registration Key
  175.         Line 5:Path and Filename of ANS + ASC Screens 
  176.         Line 6:Number of Oneliners (MAX 18)
  177.         Line 7:NAME For names and NONAME for No names Displayed in Screens
  178.  
  179.  
  180.  
  181.  
  182.         Suggestions and/or Comments
  183.         ───────────────────────────
  184.         For any questions or comments send netmail to 1:272/47 or 1:272/98.
  185.  
  186.         
  187.