home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 17
/
amigaformatcd17.iso
/
-look_here_1st!-
/
nc_demon_lite
/
amitcp
/
db
/
dialscript
Wrap
Text File
|
1997-06-16
|
476b
|
30 lines
/* This Script will connect to the provider
* and login using the login-script in
* ENV:NetConfig/LoginScript
*
* Do not modify anything since AmiTCP Prefs
* depends on it.
*/
options results
signal on error
Set WaitForTimeout 30
Set InterCharDelay 20
ShowConsole
call CommandState
call Dial
if (result != 0) then
exit 10
call "ENV:NetConfig/LoginScript"
exit 0;
error:
Say "Dialscript: Command on line" SIGL "returned" RC ":" SerScript.LASTERROR
Exit 10