home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #2 / RBBS_vol1_no2.iso / add2 / tm110_1.zip / RBBS.SCR < prev    next >
Text File  |  1989-04-06  |  670b  |  33 lines

  1. first = "Winfred"            ; put your name here
  2. last = "Hu"
  3. repeat                       ; wait for log on prompt
  4.   waitfor "first",5
  5.   if not found
  6.     put "^C~^["
  7.   endif
  8. until found
  9. put first                    ; put name
  10. delay 5
  11. put last
  12.  
  13. repeat                       ; wait for password request
  14.   waitfor "password",5
  15.   if not found
  16.     put "^C"
  17.   endif
  18. until found
  19. put "^&"                     ; put password (defined in Dial window)
  20.  
  21. repeat                       ; wait for main menu
  22.   waitfor "main command",2
  23.   if not found
  24.     put "^C"
  25.   endif
  26. until found
  27.  
  28. ;logon
  29. ;waitfor "NO CARRIER","please call again",0
  30. ;logoff
  31. ;hangup
  32.  
  33.