home *** CD-ROM | disk | FTP | other *** search
-
- ; PCBOARD.SCR is a log on script file for PCBoard
- ;
-
- Name = "first last" ; put your name here
- Color = "Y^M" ; "Y"es or "N"o
-
- AdvanceFeature = 1 ; enable advance features, 0 to disable
-
- When "graphics",Color
-
- Waitfor 0 ; unlimited waiting time
-
- Waitfor "first name?"
- Put Name
-
- Waitfor "Password"
- Put "^&"
-
- when "graphics","" ; cancel the response string
-
- ;
- ; advance features include
- ; MegaReader auto session (upload reply and download message)
- ; Ymodem auto download
- ; Ymodem-G auto download
- ; Batch Ymodem auto download
- ; Xmodem auto download
- ; Xmodem-1K auto download
- ;
-
- if AdvanceFeature
- while connected
- waitfor "Download Size:","From Your Reader Now...",10
- switch found
- case 1: ; Auto-downlaod
- waitfor "Protocol Type:",3
- if found
- waitfor "Xmodem","Ymodem",1
- switch found
- case 1:
- waitfor "Transfer",2 ; Xmodem or Xmodem-1k
- receive "x","" ; use guessing name
- case 2:
- waitfor "G","^M",1
- switch found
- case 1:
- protocol = "g" ; Ymodem-G
- case 2:
- protocol = "b" ; Batch Ymodem
- endswitch
- waitfor "Transfer","(Enter)=continue?",2
- if found=2
- put
- waitfor "Start your download",1
- endif
- receive protocol
- endswitch
- endif
- case 2:
- delay 10
- send "z","" ; MegaReader
- endswitch
- endwhile
- endif
-
-