home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PowerPlay 1998 November
/
PowerPlay1198.bin
/
Online
/
Cserve
/
SCRIPTS.LIB
/
telepac.scr
< prev
next >
Wrap
Text File
|
1997-07-08
|
1KB
|
55 lines
!
! Copyright (c) 1997
! by CompuServe Incorporated, Columbus, Ohio
!
! The information in this software is subject to change without
! notice and should not be construed as a commitment by CompuServe.
!
! TELEPAC:
! Connect to Telepac
! Success: returns %Success
! Failure: saves error msg in %FailureMsg and returns %Failure
!
!+V
! "4.0.2"
!-V
show "Verbindungsaufbau mit dem TELEPAC-Netzwerk";
Tries = 5;
HostSent = %FALSE;
on cancel goto Return_Cancel;
Wait_Telepac:
if Tries = 0 goto Telepac_Failure;
Tries = Tries - 1;
wait
"Telepac: " goto Send_Telepac_Host,
"User ID:" goto Return_Success,
"Host Name:" goto Return_Success
until 60;
send "." & %CR;
HostSent = %FALSE;
goto Wait_Telepac;
Send_Telepac_Host:
if HostSent goto Wait_Telepac;
wait until 5;
send "R 47911303" & %CR;
wait until 10;
HostSent = %TRUE;
goto Wait_Telepac;
Telepac_Failure:
define %FailureMsg = "TELEPAC antwortet nicht";
exit %Failure;
Return_Cancel:
exit %Cancel;
Return_Success:
send %CR;
exit %Success;