home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Des Monats 1995 October
/
CD10_95.bin
/
swdirekt
/
netze
/
wincimd
/
disk1
/
scripts.lib
/
TELEPAC.SCR
< prev
next >
Wrap
Text File
|
1994-12-29
|
1KB
|
55 lines
!
! Copyright (c) 1994
! 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
! "3.5.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;