home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
pibterm
/
pibt41e3.arc
/
PIBHOST.SCR
< prev
next >
Wrap
Text File
|
1988-02-26
|
3KB
|
69 lines
***************************************************************************
* P I B H O S T . S C R --- Script for logging into PibTerm host *
***************************************************************************
* *
* Script: PibHost.Scr *
* *
* Purpose: Connects to PibTerm host system. Designed for use as *
* attached script in dialing directory. *
* *
* Invocation: *
* *
* Execute "PibHost" *
* *
* Remarks: *
* *
* Change the values of "firstname", "lastname", and "password" *
* to those of your own PibTerm host account. *
* *
***************************************************************************
*
* Holds prompt type encountered.
Declare Mess Integer
* Wait for overprinting prompt.
WaitString "T I N G ?"
* Reply Yes.
SText "Y"
* Wait for first name prompt.
WaitString "first name:"
* Send first name.
* PUT YOURS HERE.
*
SText "firstname|"
* Wait for last name prompt.
WaitString "last name:"
* Send last name.
* PUT YOURS HERE.
*
SText "lastname|"
* Wait for password prompt.
WaitString "Password:"
* Send password name.
* PUT YOURS HERE.
*
SText "password|"
* Wait for message scan to finish.
*
Repeat
* Wait for paging message or
* end of scan message.
*
WaitList Mess "non-stop" "continue:"
*
DOCASE Mess OF
* Run through entire message scan.
* We can always look again later.
CASE 1
SText "C"
ENDCASE
* Send <CR> to get main PibTerm host
* mode menu.
CASE 2
SText "|"
ENDCASE
*
ENDDOCASE
*
Until ( Mess > 1 )
*