home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 December
/
VPR9712A.ISO
/
OLS
/
WIN16
/
HT219
/
HT219.LZH
/
ASCIINET.SCR
next >
Wrap
Text File
|
1993-10-02
|
1KB
|
36 lines
; 新ASCII NET
; 一番最初に電話をかけたときにユーザIDとパスワードを聞いてきます。
; 2回目以降は聞いてきません。
; 回線の接続手順によってはうまく接続できないかもしれません。
; その場合、各自で直してください。
sleep 1
; 300 / 1200 bps の場合は、send "@" を、send "^M" に変えてください。
send "@P"
sleep 1
send "^M"
switch
case "login User ID: "
; 続く
case "*"
send "c ascii^M"
wait "login User ID: "
endswitch
timeout 0
if( %AsciiNetID == "" )
input "ユーザIDを入力してください。", %AsciiNetID
if( cancel ) hangup
endif
send %AsciiNetID + "^M"
wait "User Password:"
if( %%AsciiNetPassword == "" )
secretinput "パスワードを入力してください。", %%AsciiNetPassword
if( cancel ) hangup
endif
send %%AsciiNetPassword + "^M"
wait "L I V E N E T W O R K !"
; ログの作成方法はここです。各自好きなように直してください。
log "asciinet.log", 30
exit