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

  1. ***************************************************************************
  2. *    D E L P H I . S C R --- Script for logging into DELPHI system        *
  3. ***************************************************************************
  4. *                                                                         *
  5. *    Script:  Delphi.Scr                                                  *
  6. *                                                                         *
  7. *    Purpose: Connects to Delphi system.  Designed for use as             *
  8. *             attached script in dialing directory.                       *
  9. *                                                                         *
  10. *    Invocation:                                                          *
  11. *                                                                         *
  12. *       Execute "Delphi"                                                  *
  13. *                                                                         *
  14. *    Remarks:                                                             *
  15. *                                                                         *
  16. *       Change the values of "username" and "password" to those of your   *
  17. *       own Delphi account.                                               *
  18. *                                                                         *
  19. ***************************************************************************
  20. *
  21. *                                  Wait a bit for network to wake up.
  22.  Suspend 300
  23. *                                  Indicate we want to login.
  24.  SText "A"
  25. *                                  Wait for login notice.
  26.  WaitString "please log in:"
  27. *                                  Indicate we want Delphi system.
  28.  SText "DELPHI|"
  29. *                                  Wait for Username prompt.
  30.  WaitString "Username:"
  31. *                                  Send username -- PUT YOURS HERE.
  32.  SText "username|"
  33. *                                  Wait for Password prompt.
  34.  WaitString "Password:"
  35. *                                  Send password -- PUT YOURS HERE.
  36.  SText "password|"
  37. *
  38.