home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / comm / rbcomm32.zip / BAREOPUS.MAC < prev    next >
Text File  |  1990-07-29  |  740b  |  29 lines

  1. ; RBcomm macro file for a bare Opus system (no front-end mailer)
  2. ;   by Ralf Brown
  3.  
  4. ; automatic logon routine
  5. AUTO    MULTI
  6.     BEEP              ; get user's attention that we've finally
  7.     PAUSE    6          ; made it onto the system
  8.     BEEP
  9.     TEXT    "\r"              ; get the BBS's attention
  10.     PAUSE    9
  11.     TEXT    "\r"
  12.     PAUSE    9
  13.     UNTIL    SUCCESS
  14.        {
  15.        TEXT    "\r"
  16.        WAITFOR 1 " "
  17.        }
  18.     WAITFOR 20 "ame:"         ; wait for login prompt
  19.     TEXT    "your name;y\r"   ; and send name
  20.     WAITFOR 10 "ord:"         ; wait for password prompt
  21.     PASSWORD          ; send the password defined in the directory
  22.     TEXT    "\r"              ; finish up password with a Return
  23.     WHEN    1 "ress E"        ; press Enter when asked
  24.       TEXT "\r"
  25.     END
  26.  
  27. #include "opus.mac"
  28.  
  29.