home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 17 / amigaformatcd17.iso / -look_here_1st!- / nc_demon_lite / amitcp / db / dialscript
Text File  |  1997-06-16  |  476b  |  30 lines

  1. /*  This Script will connect to the provider
  2.  *  and login using the login-script in
  3.  *  ENV:NetConfig/LoginScript
  4.  *
  5.  *  Do not modify anything since AmiTCP Prefs
  6.  *  depends on it.
  7.  */
  8.  
  9. options results
  10. signal on error
  11.  
  12. Set WaitForTimeout 30
  13. Set InterCharDelay 20
  14.  
  15. ShowConsole
  16.  
  17. call CommandState
  18. call Dial
  19.  
  20. if (result != 0) then
  21.   exit 10
  22.  
  23. call "ENV:NetConfig/LoginScript"
  24.  
  25. exit 0;
  26.  
  27. error:
  28. Say "Dialscript: Command on line" SIGL "returned" RC ":" SerScript.LASTERROR
  29. Exit 10
  30.