home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #2 / RBBS_vol1_no2.iso / 001z / rbbs.scr < prev    next >
Text File  |  1989-03-01  |  857b  |  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^M'                     ; Send N   ^M = <CR>
  15.  
  16. Waitfor   'Name'
  17. Send      'FIRSTNAME;LASTNAME;PASSWORD^M'
  18.  
  19. Timeout   30 Continue              ; If the Board remembers us, skip
  20. Waitfor   'More (Y)'               ;   the next Waitfor...
  21. Send      'N^M'                     ;     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.