home *** CD-ROM | disk | FTP | other *** search
- ***************************************************************************
- * D E L P H I . S C R --- Script for logging into DELPHI system *
- ***************************************************************************
- * *
- * Script: Delphi.Scr *
- * *
- * Purpose: Connects to Delphi system. Designed for use as *
- * attached script in dialing directory. *
- * *
- * Invocation: *
- * *
- * Execute "Delphi" *
- * *
- * Remarks: *
- * *
- * Change the values of "username" and "password" to those of your *
- * own Delphi account. *
- * *
- ***************************************************************************
- *
- * Wait a bit for network to wake up.
- Suspend 300
- * Indicate we want to login.
- SText "A"
- * Wait for login notice.
- WaitString "please log in:"
- * Indicate we want Delphi system.
- SText "DELPHI|"
- * Wait for Username prompt.
- WaitString "Username:"
- * Send username -- PUT YOURS HERE.
- SText "username|"
- * Wait for Password prompt.
- WaitString "Password:"
- * Send password -- PUT YOURS HERE.
- SText "password|"
- *