home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / T / TUCD10.ZIP / CDROM.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1996-09-14  |  991b  |  90 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.     Boolean  BOOLEAN001
  20.     Integer  INTEGER001
  21.     Integer  INTEGER002
  22.     String   STRING001
  23.     String   STRING002
  24.     String   STRING003
  25.     String   STRING004
  26.     String   STRING005
  27.  
  28. ;------------------------------------------------------------------------------
  29.  
  30.     BOOLEAN001 = 0
  31.     FOpen 1, PPEPath() + "CDROM.CFG", 0, 2
  32.     FGet 1, STRING001
  33.     FGet 1, STRING004
  34.     FGet 1, STRING005
  35.     FGet 1, INTEGER001
  36.     For INTEGER002 = 1 To INTEGER001
  37.         If (BOOLEAN001) Continue
  38.         FGet 1, STRING003
  39.         FGet 1, STRING002
  40.         If (Exist(STRING003)) Then
  41.             STRING001 = STRING002
  42.             BOOLEAN001 = 1
  43.         Endif
  44.     Next
  45.     PrintLn 
  46.     PrintLn STRING004 + STRING005 + STRING001
  47.  
  48. ;------------------------------------------------------------------------------
  49. ;
  50. ; Usage report (before postprocessing)
  51. ;
  52. ; ■ Statements used :
  53. ;
  54. ;    4       Goto 
  55. ;    5       Let 
  56. ;    2       PrintLn 
  57. ;    3       If 
  58. ;    1       FOpen 
  59. ;    6       FGet 
  60. ;
  61. ;
  62. ; ■ Functions used :
  63. ;
  64. ;    4       +
  65. ;    1       <
  66. ;    1       <=
  67. ;    2       >=
  68. ;    3       !
  69. ;    2       &&
  70. ;    1       ||
  71. ;    1       PPEPath()
  72. ;    1       Exist()
  73. ;
  74. ;------------------------------------------------------------------------------
  75. ;
  76. ; Analysis flags : No flag
  77. ;
  78. ;------------------------------------------------------------------------------
  79. ;
  80. ; Postprocessing report
  81. ;
  82. ;    1       For/Next
  83. ;    0       While/EndWhile
  84. ;    1       If/Then or If/Then/Else
  85. ;    0       Select Case
  86. ;
  87. ;------------------------------------------------------------------------------
  88. ;                 AEGiS Corp - Break the routines, code against the machines!
  89. ;------------------------------------------------------------------------------
  90.