home *** CD-ROM | disk | FTP | other *** search
- ***************************************************************************
- * T B B S . S C R --- Script for logging into TBBS BBS system *
- ***************************************************************************
- * *
- * Script: Tbbs.Scr *
- * *
- * Purpose: Connects to TBBS system. Designed for use as *
- * attached script in dialing directory. *
- * *
- * Invocation: *
- * *
- * Execute "TBBS" *
- * *
- * Remarks: *
- * *
- * Change the values of "firstname", "lastname", and "password" *
- * to those of your own TBBS account. *
- * *
- ***************************************************************************
- *
- * Send some CRs until system wakes up
- Repeat
- SText "|"
- Waitstring "ame" 2
- Until ( WaitFound OR ( NOT Connected ) )
- *
- * Carrier dropped -- quit.
- If ( NOT Connected ) Then
- Exit
- EndIf
- * Send first name, last name.
- * PUT YOURS HERE.
- *
- Stext "firstname;lastname|"
- *
- * Reply "y" to validation prompt
- *
- Waitstring "correct?"
- Stext "y|"
- *
- * Wait for password prompt and then
- * send password.
- * PUT YOURS HERE.
- *
- Waitstring "word"
- Stext "password|"