;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; PROCOMM PLUS ASPECT script file
; written by  David R. McMillen
;
;    Board: SBCC
; Software: TBBS
;     Mode: Manual
;
;
; History:
;
; 25-sep-91  converted from SBCCA.ASP.
; 07-oct-91  added ability to do DSZ estimates according to each
;            boards expected connect rate.
;
;
;
include "utility.inc"                    ; include common aspect procedures

proc MAIN

    log close                            ; close any prior log
    transmit "^M"
    waitfor "FULL Name?" forever         ; log on now...
    strfmt S0 "david mcmillen;%s" $D_PWORD   ; name;password^M
    transmit S0                          ; Send name and password

    when 0 "-more-" transmit "^M"
    when 1 "-press" transmit "^M"

    call OPEN_LOG                        ; open a log file

    call SET_CONNECT with "2400"         ; set rate for DSZ estimates

endproc ; MAIN
