home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / F / FSW_STAT.ZIP / FSW-STAT.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1996-02-19  |  2KB  |  139 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.2O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     String   STRING002
  21.     String   STRING003
  22.     String   STRING004
  23.     String   STRING005
  24.     String   STRING006
  25.  
  26. ;------------------------------------------------------------------------------
  27.  
  28.     STRING004 = "@X3F Personal Stat @X07"
  29.     STRING005 = "@X3F   File Stat   @X07"
  30.     STRING006 = "@X3F     Quit      @X07"
  31.     STRING002 = Chr(27)
  32.     STRING001 = Chr(13)
  33.     :LABEL001
  34.     DispFile PPEPath() + "stat.pcb", 0
  35.     :LABEL002
  36.     AnsiPos 28, 13
  37.     Print STRING005
  38.     AnsiPos 28, 14
  39.     Print "@X0F Personal Stat     "
  40.     AnsiPos 28, 15
  41.     Print "     Quit          "
  42.     AnsiPos 28, 13
  43.     :LABEL003
  44.     STRING003 = Inkey()
  45.     If (STRING003 == "DOWN") Goto LABEL004
  46.     If (STRING003 == "UP") Goto LABEL002
  47.     If (STRING003 == STRING002) Goto LABEL010
  48.     If (STRING003 == STRING001) Goto LABEL008
  49.     Goto LABEL003
  50.     :LABEL004
  51.     AnsiPos 28, 13
  52.     Print "@X0F   File Stat   "
  53.     AnsiPos 28, 14
  54.     Print STRING004
  55.     AnsiPos 28, 15
  56.     Print "@X0F     Quit      "
  57.     AnsiPos 28, 14
  58.     :LABEL005
  59.     STRING003 = Inkey()
  60.     If (STRING003 == "DOWN") Goto LABEL006
  61.     If (STRING003 == "UP") Goto LABEL002
  62.     If (STRING003 == STRING002) Goto LABEL010
  63.     If (STRING003 == STRING001) Goto LABEL009
  64.     Goto LABEL005
  65.     :LABEL006
  66.     AnsiPos 28, 13
  67.     Print "   File Stat      "
  68.     AnsiPos 28, 14
  69.     Print " Personal Stat    "
  70.     AnsiPos 28, 15
  71.     Print STRING006
  72.     AnsiPos 28, 15
  73.     :LABEL007
  74.     STRING003 = Inkey()
  75.     If (STRING003 == "DOWN") Goto LABEL002
  76.     If (STRING003 == "UP") Goto LABEL004
  77.     If (STRING003 == STRING001) Goto LABEL010
  78.     Goto LABEL007
  79.     :LABEL008
  80.     DispFile PPEPath() + "filestat.pcb", 0
  81.     Goto LABEL001
  82.     :LABEL009
  83.     DispFile PPEPath() + "private.pcb", 0
  84.     Goto LABEL001
  85.     :LABEL010
  86.     Cls
  87.     AnsiPos 1, 1
  88.     Print "@X0FCoded By Shadowblade"
  89.     Delay 5
  90.     AnsiPos 1, 1
  91.     Print "@X0BCoded by Shadowblade"
  92.     Delay 3
  93.     AnsiPos 1, 1
  94.     Print "@X03Coded by Shadowblade"
  95.     Delay 3
  96.     AnsiPos 1, 1
  97.     Print "@X08Coded by Shadowblade"
  98.  
  99. ;------------------------------------------------------------------------------
  100. ;
  101. ; Usage report (before postprocessing)
  102. ;
  103. ; ■ Statements used :
  104. ;
  105. ;    1       Cls
  106. ;    16      Goto 
  107. ;    8       Let 
  108. ;    13      Print 
  109. ;    11      If 
  110. ;    3       DispFile 
  111. ;    3       Delay 
  112. ;    16      AnsiPos 
  113. ;
  114. ;
  115. ; ■ Functions used :
  116. ;
  117. ;    3       +
  118. ;    11      ==
  119. ;    2       Chr()
  120. ;    3       Inkey()
  121. ;    3       PPEPath()
  122. ;
  123. ;------------------------------------------------------------------------------
  124. ;
  125. ; Analysis flags : No flag
  126. ;
  127. ;------------------------------------------------------------------------------
  128. ;
  129. ; Postprocessing report
  130. ;
  131. ;    0       For/Next
  132. ;    0       While/EndWhile
  133. ;    0       If/Then or If/Then/Else
  134. ;    0       Select Case
  135. ;
  136. ;------------------------------------------------------------------------------
  137. ;                 AEGiS Corp - Break the routines, code against the machines!
  138. ;------------------------------------------------------------------------------
  139.