; ; This is a script file that opens a connection with ECSIS.NET ; establishes a PPP connection with our host ; and sets the user ready to Browse, read mail and so forth... ; ; A script file must have a 'main' procedure. ; All script execution starts with this 'main' ; procedure. ; ; Main entry point to script ; proc main ; Delay for 3 seconds first to allow host time ; to send initial characters. delay 3 ; Wait for the login prompt before entering ; the user ID ;transmit "^M" waitfor "username:" transmit "type username here" transmit "^M" ; Enter the password waitfor "password:" transmit "put password here" transmit "^M" waitfor "action:" transmit "ppp" ; Choose PPP connection transmit "^M" endproc