; ProComm ASP file to log onto the Vector Board BBS ; J. Lill 8/26/92 proc main ; put your user name and password in here. Remember, password is ; case-sensitive S0 = "YourName" S1 = "urpw" transmit "^M" waitfor "continue" transmit "^M" waitfor "==>" transmit S0 transmit "^M" waitfor "==>" transmit S1 transmit "^M" ; next 2 lines will skip bulletins waitfor "===>" transmit "Q" ; next two lines will skip message read waitfor "(Y/n):" transmit "N" endproc