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

  1. ***************************************************************************
  2. *        F I D O . S C R --- Script for logging into FIDO BBS system      *
  3. ***************************************************************************
  4. *                                                                         *
  5. *    Script:  Fido.Scr                                                    *
  6. *                                                                         *
  7. *    Purpose: Connects to FIDO system.  Designed for use as               *
  8. *             attached script in dialing directory.                       *
  9. *                                                                         *
  10. *    Invocation:                                                          *
  11. *                                                                         *
  12. *       Execute "Fido"                                                    *
  13. *                                                                         *
  14. *    Remarks:                                                             *
  15. *                                                                         *
  16. *       Change the values of "firstname", "lastname", and "password"      *
  17. *       to those of your own FIDO account.                                *
  18. *                                                                         *
  19. ***************************************************************************
  20. *
  21. *                                  Send some spaces until system wakes up
  22.  Repeat
  23.     SText " "
  24.     Waitstring "Your FIRST name:" 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 "Y,n"
  39.  Stext "y|"
  40. *
  41. *                                  Wait for password prompt and then
  42. *                                  send password.
  43. *                                  PUT YOURS HERE.
  44. *
  45.  Waitstring "assword:"
  46.  Stext "password|"
  47.