home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / S / SCL!NF20.ZIP / NEW.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1996-06-04  |  2KB  |  114 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.O1 (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     Integer  INTEGER002
  21.     Integer  INTEGER003
  22.     Integer  INTEGER004
  23.     String   STRING001
  24.  
  25. ;------------------------------------------------------------------------------
  26.  
  27.     Cls
  28.     PrintLn "@X01   `-> @X03 New Files in All Conferences 2. 0Coded by Light Vader@X02/@X03Seclusion @X01 <-'"
  29.     Print "@X03Retreiving directory information ...."
  30.     Delay 20
  31.     Print ".. Done"
  32.     INTEGER004 = U_RecNum(U_Name())
  33.     INTEGER002 = CurConf()
  34.     FOpen 1, PPEPath() + "NEW.CNF", 2, 0
  35.     FGet 1, INTEGER001
  36.     FClose 1
  37.     For INTEGER003 = 0 To INTEGER001
  38.         If (U_InConf(INTEGER004, INTEGER003) == 1) Gosub LABEL002
  39.     Next
  40.     :LABEL001
  41.     PrintLn 
  42.     PrintLn "@X03 New files since last call in all board 2.0 by Light Vader/Seclusion"
  43.     Join INTEGER002
  44.     End
  45.     :LABEL002
  46.     Newline
  47.     Print "@X03 Scan conference number @X02" + String(INTEGER003) + "@X03 (Y/n/x) "
  48.     InputStr "_", STRING001, 3, 1, "YNXynx", 8
  49.     If (STRING001 == "N") Return
  50.     If (STRING001 == "X") Goto LABEL001
  51.     Join INTEGER003
  52.     Cls
  53.     Dir "N;S;A"
  54.     Return
  55.  
  56. ;------------------------------------------------------------------------------
  57. ;
  58. ; Usage report (before postprocessing)
  59. ;
  60. ; ■ Statements used :
  61. ;
  62. ;    1       End
  63. ;    2       Cls
  64. ;    3       Goto 
  65. ;    4       Let 
  66. ;    3       Print 
  67. ;    3       PrintLn 
  68. ;    4       If 
  69. ;    1       FOpen 
  70. ;    1       FClose 
  71. ;    1       FGet 
  72. ;    1       InputStr 
  73. ;    1       Gosub 
  74. ;    2       Return
  75. ;    1       Delay 
  76. ;    1       Newline
  77. ;    2       Join 
  78. ;    1       Dir 
  79. ;
  80. ;
  81. ; ■ Functions used :
  82. ;
  83. ;    4       +
  84. ;    3       ==
  85. ;    1       <
  86. ;    1       <=
  87. ;    2       >=
  88. ;    1       !
  89. ;    2       &&
  90. ;    1       ||
  91. ;    1       U_Name()
  92. ;    1       String()
  93. ;    1       CurConf()
  94. ;    1       PPEPath()
  95. ;    1       U_RecNum()
  96. ;    1       U_InConf()
  97. ;
  98. ;------------------------------------------------------------------------------
  99. ;
  100. ; Analysis flags : No flag
  101. ;
  102. ;------------------------------------------------------------------------------
  103. ;
  104. ; Postprocessing report
  105. ;
  106. ;    1       For/Next
  107. ;    0       While/EndWhile
  108. ;    0       If/Then or If/Then/Else
  109. ;    0       Select Case
  110. ;
  111. ;------------------------------------------------------------------------------
  112. ;                 AEGiS Corp - Break the routines, code against the machines!
  113. ;------------------------------------------------------------------------------
  114.