home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / pibterm / pibt41e3.zip / TBBS.SCR < prev    next >
Text File  |  1988-02-26  |  2KB  |  47 lines

  1. ***************************************************************************
  2. *        T B B S . S C R --- Script for logging into TBBS BBS system      *
  3. ***************************************************************************
  4. *                                                                         *
  5. *    Script:  Tbbs.Scr                                                    *
  6. *                                                                         *
  7. *    Purpose: Connects to TBBS system.  Designed for use as               *
  8. *             attached script in dialing directory.                       *
  9. *                                                                         *
  10. *    Invocation:                                                          *
  11. *                                                                         *
  12. *       Execute "TBBS"                                                    *
  13. *                                                                         *
  14. *    Remarks:                                                             *
  15. *                                                                         *
  16. *       Change the values of "firstname", "lastname", and "password"      *
  17. *       to those of your own TBBS account.                                *
  18. *                                                                         *
  19. ***************************************************************************
  20. *
  21. *                                  Send some CRs until system wakes up
  22.  Repeat
  23.     SText "|"
  24.     Waitstring "ame" 2
  25.  Until ( WaitFound OR ( NOT Connected ) )
  26. *
  27. *                                  Carrier dropped -- quit.
  28.  If ( NOT Connected ) Then
  29.     Exit
  30.  EndIf
  31. *                                  Send first name, last name.
  32. *                                  PUT YOURS HERE.
  33. *
  34.  Stext   "firstname;lastname|"
  35. *
  36. *                                  Reply "y" to validation prompt
  37. *
  38.  Waitstring "correct?"
  39.  Stext "y|"
  40. *
  41. *                                  Wait for password prompt and then
  42. *                                  send password.
  43. *                                  PUT YOURS HERE.
  44. *
  45.  Waitstring "word"
  46.  Stext "password|"
  47.