home *** CD-ROM | disk | FTP | other *** search
- ;InterQ チ「シモ script
- ;Normal タホナヘウン チ「シモ
- proc main
-
- loop:
- waitfor
- "CLR PAD",matchcase then start,
- ": X",matchcase then start,
- ": x",matchcase then start,
- "ヌマシシソ", matchcase then start,
- "[Y/n]",matchcase then yninput,
- "[Y/N]",matchcase then yninput,
- "(y/N)",matchcase then yninput,
- "[ ENTER ]",matchcase then enterinput,
- ">>",matchcase then numinput,
- "ID :",matchcase then idinput,
- "セマネ」 :",matchcase then idinput,
- "Real PPP",matchcase then done,
- "SLiRP Ready",matchcase then done
-
- until 40
-
- start:
- transmit $PASSWORD
- transmit "^M"
- goto loop
-
- yninput:
- transmit "y^M"
- goto loop
-
- enterinput:
- transmit "^M"
- goto loop
-
- numinput:
- transmit "11^M"
- goto loop
-
- idinput:
- transmit $USERID
- transmit "^M"
- goto loop
-
- connfail:
- set screen keyboard on
- halt
-
- Done:
- set port databits 8
- set port parity none
-
- endproc
-
-