home *** CD-ROM | disk | FTP | other *** search
- DIAL:
- DELAY 3
- SEND "ATdt555-1221^M"
- ON "CONNECT" GOTO CONN
- DELAY 20
- SEND " "
- DELAY 1
- #
- SEND "ATdt555-1222^M"
- ON "CONNECT" GOTO CONN
- DELAY 20
- SEND " "
- DELAY 1
- #
- SEND "ATdt555-1223^M"
- ON "CONNECT" GOTO CONN
- DELAY 20
- SEND " "
- DELAY 1
- #
- SEND "ATdt555-1224^M"
- ON "CONNECT" GOTO CONN
- DELAY 20
- SEND " "
- DELAY 1
- GOTO DIAL
- #
- CONN:
- # Send CRs till I get a login: prompt.
- SEND ^M
- ON "login:" GOTO LOGIN
- DELAY 3
- GOTO CONN
- LOGIN:
- # Send my username and my "password", reply to first prompt.
- SEND "acs^M"
- WAIT "assword:"
- SEND "mypass^M"
- WAIT "#?"
- SEND "1^M"
- WAIT "=> "
- # Go to the source directory and send EVERYTHING then get off.
- SEND "cd vt100src/rel2.7^M"
- WAIT "=> "
- SEND "wermit^M"
- WAIT "mit>"
- SEND "send *^M"
- KR
- DELAY 5
- SEND "ex^M"
- WAIT "=> "
- SEND "logoff^M"
- WAIT "NO CARRIER"
- SEND "ATH^M"
- EXIT VT100
-
-