home *** CD-ROM | disk | FTP | other *** search
/ Shareware Gold 1 / The_Golden_ROM_Series_-_Shareware_Gold_Volume_1_Number_11_-_SK_89-301_-_1989.iso / BBS / LIB022.ARC / RBBS.SCR < prev    next >
Text File  |  1988-01-01  |  854b  |  33 lines

  1.      ;
  2.      ; This Script can be customized easily for RBBS Auto Logons
  3.      ;
  4.      ; Replace FIRSTNAME with your real first name.
  5.      ; Replace LASTNAME with your real last name.
  6.      ; Replace PASSWORD with you normal password.
  7.      ;
  8.  
  9. Note      Logging onto an RBBS
  10.  
  11. Timeout   30  Halt                 ; Waitfor limit to 30, error goto Halt
  12.  
  13. Waitfor   'More (Y)'               ; Wait for the string
  14. Send      'N{'                     ; Send N   { = <CR>
  15.  
  16. Waitfor   'Name'
  17. Send      'FIRSTNAME;LASTNAME;PASSWORD{'
  18.  
  19. Timeout   30 Continue              ; If the Board remembers us, skip
  20. Waitfor   'More (Y)'               ;   the next Waitfor...
  21. Send      'N{'                     ;     Goto Continue
  22.  
  23. Continue:
  24.  
  25. Note      You are now logged on!
  26. Exit
  27.  
  28. Halt:
  29.  
  30. Note      Unuccessful Attempt.
  31. Note      Script Halted
  32. Return
  33.