
proc main
    CHDIR "C:\wc30\eq"             ;This is necessary
    SET DLDIR "c:\wc30\files\EQ"   ;This is File EQ download dir set in Makewild
    transmit "ATZ^M"               ;Leave up to you...maybe not needed!
    pause 2
           statmsg "Dialing Software Connection"
    dial "10"                 ;Dials entry # 10 from PCPLUS.DIR,default

    if not connected          ; will dial for as long as you have set and
      quit                    ; will terminate if unsuccessful
    endif
if connected
            statmsg "Waiting for login prompt"
waitfor "first name" 30
            if waitfor
            pause 1
            transmit "*Firstname Lastname Password^M"   ;Insert your name and
                                                        ;password for fast
                                                        ;log-on
            endif

waitfor "?" 45
            if waitfor
            pause 1                  ;All of these entries move thru
                transmit "y"         ;the menus
            endif

waitfor "?" 45
            if waitfor
            pause 1
                transmit "f"
            endif

waitfor "?" 45
            if waitfor
            pause 1
                transmit "d"
            endif
  pause 1
