home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / batdoor.zip / MORE_R.ZIP / MORE_R.DOC < prev    next >
Text File  |  1986-12-07  |  2KB  |  59 lines

  1.                            Documentation for
  2.                               MORE_R.COM
  3.  
  4.    MORE_R is one of a series of DOORs .BAT programs for SysOp's to
  5. utilize for increasing the ability of their standard BBS systems.
  6. The other programs are PAUSE_R, ECHO_R, GETKEY_R, and TYPE_R. With
  7. these files, a SysOp can have a non-CTTY DOORs system that is
  8. virtually unbreakable.
  9.  
  10.    MORE_R works just like the DOS TYPE command, except for two major
  11. differences:
  12.    1: It will simultaneously output to COM1: as well as the screen.
  13.    2: It will pause after 24 lines, and ask if the user wants to
  14.       view more (just like the DOS MORE filter, except a response
  15.       of "Y" or a carriage return will continue, an "N" will
  16.       abort the display, and "C" will cause continuous non-stop
  17.       scrolling).
  18.  
  19. The format for using MORE_R *MUST* be as follows:
  20.  
  21.                  MORE_R drive:/subdirectory(s)/filename.ext
  22.  
  23.    The drive and subdirectory name MUST be included. The drive may
  24. NOT go beyond "E". This program assumes that the serial card is
  25. installed and working, and no error checking for communications is
  26. done. For COM2:, use MORE_R2.COM.
  27.  
  28.    A typical example could be:
  29.  
  30.              ECHO OFF
  31.              :LOOP
  32.              TYPE_R C:\DOOR\MAINMENU
  33.              GETKEY_R YNR
  34.              IF ERRORLEVEL 89 GOTO RACTER
  35.              IF ERRORLEVEL 82 GOTO LISTING
  36.              IF ERRORLEVEL 78 GOTO PCBOARD
  37.              :RACTER
  38.              RACTER
  39.              GOTO LOOP
  40.              :LISTING
  41.              MORE_R C:\DOOR\RACTER.OUT
  42.              GOTO LOOP
  43.              :PCBOARD
  44.              PCBOARD
  45.  
  46.  It is suggestes that for non-ANSI, and for large ASCII text, that
  47. MORE_R be used. For ANSI graphics, use TYPE_R.
  48.  
  49.   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  50.   $                                               $
  51.   $     Written and produced by Leo J. Langevin   $
  52.   $                                               $
  53.   $       SysOp of THE BBS OF EXCELLENCE          $
  54.   $                                               $
  55.   $       (312)398-2872 300/1200/2400             $
  56.   $                                               $
  57.   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  58.  
  59.