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

  1. ; RBcomm macro file for Opus systems with OpXpress
  2. ;
  3. F2      MULTI                    ; from main bulletins screen
  4.     TEXT    "x\r"
  5.     WAITFOR 20 "ress"
  6.     TEXT    "  "
  7.     WAITFOR 15 "C, D"
  8.     PAUSE    4
  9.     PUSHKEY F3         ; now that we're at the OpX prompt, run rest
  10.     END
  11. F3    MULTI             ; from OpX prompt
  12.         CHDIR   "d:/opx"         ; make sure we're in the right directory
  13.     TEXT    "d\r"            ; tell OpX we want to download
  14.     WAITFOR 40 ">"           ; wait for action prompt
  15.     WAITFOR 3  ":"
  16.     PAUSE    4
  17.         TEXT    "a\r"            ; we want to download all messages
  18.     WAITFOR 30 "ountdown"    ; wait for transfer start prompt
  19.     PAUSE    3
  20.         TEXT    "\r"             ; yes, we want to start downloading
  21.     END
  22.  
  23. ; and now, our automatic logon routine
  24. AUTO    MULTI
  25.     BEEP              ; get user's attention that we've finally
  26.     PAUSE    6          ; made it onto the system
  27.     BEEP
  28.     TEXT    "\r"              ; get the BBS's attention
  29.     PAUSE    9
  30.     TEXT    "\r"
  31.     PAUSE    9
  32.     UNTIL    SUCCESS
  33.        {
  34.        TEXT    "\r"
  35.        WAITFOR 1 " "
  36.        }
  37.     WAITFOR 5 "ress"          ; when mailer asks to press Escape, do so
  38.     TEXT    "\e"
  39.     WAITFOR 20 "ame:"         ; wait for login prompt
  40.     TEXT    "your name;y\r"   ; and send name
  41.     WAITFOR 10 "ord:"         ; wait for password prompt
  42.     PASSWORD          ; send the password defined in the directory
  43.     TEXT    "\r"              ; finish up password with a Return
  44.     END
  45.  
  46. ; and the automatic logoff on hangup
  47. Cleanup MULTI
  48.     TEXT        "gyn\r"                  ; tell Opus we're leaving
  49.     WAITFOR     20 "thanks for calling"  ; wait for signoff message
  50.      END                     ; before hanging up
  51.  
  52. #include "avatar"
  53. ; add default bindings which have not been overridden
  54. #include "rbcomm"
  55.