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