home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / S / SK!Z-BYE.ZIP / BYE.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1995-06-15  |  2KB  |  130 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.1O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     String   STRING002
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     Cls
  25.     Newlines 2
  26.     Print "@X09@X0F Press @X09[@X0FESC@X09] @X0E@X0Fto Cancel or @X09[@X0FENTER@X09] @X0Fto Hangup "
  27.     While (STRING002 <> Chr(13)) Do
  28.         STRING002 = Inkey()
  29.         If (STRING002 == Chr(27)) Then
  30.             Goto LABEL002
  31.             If (STRING002 == Chr(27)) Goto LABEL002
  32.         Endif
  33.     EndWhile
  34.     Cls
  35.     STRING001 = ReadLine(PPEPath() + "BYE.CFG", 1)
  36.     If (STRING001 == "NONE") Goto LABEL001
  37.     DispStr "%" + STRING001
  38.     Delay 6
  39.     :LABEL001
  40.     Cls
  41.     Delay 4
  42.     AnsiPos 5, 7
  43.     AnsiPos 44, 40
  44.     Print "                                           @X0A■@X0F PPe By Kandaurob [SK] @X0A■"
  45.     AnsiPos 5, 7
  46.     Print "@X08Minutes Used: @TIMEUSED@"
  47.     AnsiPos 5, 7
  48.     Delay 5
  49.     Print "@X07Minutes Used: @TIMEUSED@"
  50.     AnsiPos 5, 7
  51.     Delay 5
  52.     Print "@X0FMinutes Used: @TIMEUSED@"
  53.     AnsiPos 5, 8
  54.     Delay 5
  55.     Print "@X08Bytes DownLoaded: @DAYBYTES@"
  56.     Delay 5
  57.     AnsiPos 5, 8
  58.     Print "@X07Bytes DownLoaded: @DAYBYTES@"
  59.     Delay 5
  60.     AnsiPos 5, 8
  61.     Print "@X0FBytes DownLoaded: @DAYBYTES@"
  62.     Delay 5
  63.     AnsiPos 5, 9
  64.     Print "@X08Connect Speed: @CARRIER@"
  65.     AnsiPos 5, 9
  66.     Delay 5
  67.     Print "@X07Connect Speed: @CARRIER@"
  68.     Delay 5
  69.     AnsiPos 5, 9
  70.     Print "@X0FConnect Speed: @CARRIER@"
  71.     Newline
  72.     Goto LABEL003
  73.     :LABEL002
  74.     End
  75.     :LABEL003
  76.     Hangup
  77.  
  78. ;------------------------------------------------------------------------------
  79. ;
  80. ; Usage report (before postprocessing)
  81. ;
  82. ; ■ Statements used :
  83. ;
  84. ;    1       End
  85. ;    3       Cls
  86. ;    8       Goto 
  87. ;    2       Let 
  88. ;    11      Print 
  89. ;    4       If 
  90. ;    1       Hangup
  91. ;    10      Delay 
  92. ;    1       Newline
  93. ;    1       Newlines 
  94. ;    1       DispStr 
  95. ;    11      AnsiPos 
  96. ;
  97. ;
  98. ; ■ Functions used :
  99. ;
  100. ;    2       +
  101. ;    3       ==
  102. ;    1       <>
  103. ;    2       !
  104. ;    3       Chr()
  105. ;    1       Inkey()
  106. ;    1       PPEPath()
  107. ;    1       ReadLine()
  108. ;
  109. ;------------------------------------------------------------------------------
  110. ;
  111. ; Analysis flags : B
  112. ;
  113. ; B - Brute hangup ■ 1
  114. ;     Program hangup without notification. This may be a good way to
  115. ;     disconnect a user, but if used randomly, may be very nasty
  116. ;     ■ Search for : HANGUP, DTROFF
  117. ;
  118. ;------------------------------------------------------------------------------
  119. ;
  120. ; Postprocessing report
  121. ;
  122. ;    0       For/Next
  123. ;    1       While/EndWhile
  124. ;    1       If/Then or If/Then/Else
  125. ;    0       Select Case
  126. ;
  127. ;------------------------------------------------------------------------------
  128. ;                 AEGiS Corp - Break the routines, code against the machines!
  129. ;------------------------------------------------------------------------------
  130.