home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PowerPlay 1998 November
/
PowerPlay1198.bin
/
Online
/
WINCIMIE
/
SCRIPTS.LIB
/
DATAPAC.SCR
< prev
next >
Wrap
Text File
|
1997-05-08
|
1KB
|
59 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.
!
! DATAPAC:
! Connect to DataPac
! Success: returns %Success
! Failure: saves error msg in %FailureMsg and returns %Failure
!
!+V
! "4.0.1"
!-V
show "Verbindungsaufbau mit dem DataPac-Netzwerk";
Tries = 5;
on cancel goto Return_Cancel;
Wait_DataPac:
if Tries = 0 goto DataPac_Failure;
Tries = Tries - 1;
wait
"Connected" goto Return_Success,
"Invalid" goto Wait_DataPac, ! Try again.
"DataPac" goto Send_DataPac_Host
until 15;
send "..." & %CR;
goto Wait_DataPac;
Send_DataPac_Host:
wait until 10;
send "29400138" & %CR;
Wait_For_Connect: ! Second wait loop will not match DataPac.
if Tries = 0 goto DataPac_Failure;
Tries = Tries - 1;
wait
"Connected" goto Return_Success,
"Invalid" goto Wait_For_Connect ! Try again.
until 30;
send "..." & %CR;
goto Wait_DataPac;
DataPac_Failure:
define %FailureMsg = "DataPac antwortet nicht";
exit %Failure;
Return_Cancel:
exit %Cancel;
Return_Success:
exit %Success;