home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PCBOARD / MTHTOP11.ZIP / TOP250.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1994-02-22  |  2KB  |  117 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 2.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  TINTEGER001(250)
  20.     Integer  TINTEGER002(250)
  21.     Integer  INTEGER003
  22.     Integer  INTEGER004
  23.     Integer  TINTEGER005(250)
  24.     String   TSTRING001(250)
  25.  
  26. ;------------------------------------------------------------------------------
  27.  
  28.     For INTEGER003 = 1 To 250
  29.         GetAltUser INTEGER003
  30.         TINTEGER001(INTEGER003) = U_Bul()
  31.         TINTEGER005(INTEGER003) = U_Bdl()
  32.         TSTRING001(INTEGER003) = U_Name()
  33.     Next
  34.     DispFile PPEPath() + "top.pcb", 0
  35.     AnsiPos 1, 22
  36.     PrintLn "@X09MiRTH-TOP15 V1.0 Coded by ..: Eddie [=Broon's Bane=]"
  37.     Color 3
  38.     Sort TINTEGER001, TINTEGER002
  39.     For INTEGER003 = 0 To 14
  40.         INTEGER004 = 250 - INTEGER003
  41.         AnsiPos 6, 7 + INTEGER003
  42.         Print TSTRING001(TINTEGER002(INTEGER004))
  43.         AnsiPos 26, 7 + INTEGER003
  44.         PrintLn TINTEGER001(TINTEGER002(INTEGER004))
  45.     Next
  46.     Sort TINTEGER005, TINTEGER002
  47.     For INTEGER003 = 0 To 14
  48.         INTEGER004 = 250 - INTEGER003
  49.         AnsiPos 45, 7 + INTEGER003
  50.         Print TSTRING001(TINTEGER002(INTEGER004))
  51.         AnsiPos 65, 7 + INTEGER003
  52.         PrintLn TINTEGER005(TINTEGER002(INTEGER004))
  53.     Next
  54.     Newline
  55.     Wait
  56.     Return
  57.  
  58. ;------------------------------------------------------------------------------
  59. ;
  60. ; Usage report (before postprocessing)
  61. ;
  62. ; ■ Statements used :
  63. ;
  64. ;    1       Wait
  65. ;    1       Color 
  66. ;    6       Goto 
  67. ;    11      Let 
  68. ;    2       Print 
  69. ;    3       PrintLn 
  70. ;    3       If 
  71. ;    1       DispFile 
  72. ;    1       Return
  73. ;    1       Newline
  74. ;    5       AnsiPos 
  75. ;    1       GetAltUser 
  76. ;    2       Sort 
  77. ;
  78. ;
  79. ; ■ Functions used :
  80. ;
  81. ;    8       +
  82. ;    2       -
  83. ;    3       <
  84. ;    3       <=
  85. ;    6       >=
  86. ;    3       !
  87. ;    6       &&
  88. ;    3       ||
  89. ;    1       U_Name()
  90. ;    1       U_Bdl()
  91. ;    1       U_Bul()
  92. ;    1       PPEPath()
  93. ;
  94. ;------------------------------------------------------------------------------
  95. ;
  96. ; Analysis flags : R
  97. ;
  98. ; R - Read user ■ 5
  99. ;     User records are read, this may signify that someone wants to get
  100. ;     various informations about a user (for example his password), but
  101. ;     this may also be normal for a program accessing user records (for
  102. ;     example a User Editor)
  103. ;     ■ Search for : GETALTUSER
  104. ;
  105. ;------------------------------------------------------------------------------
  106. ;
  107. ; Postprocessing report
  108. ;
  109. ;    3       For/Next
  110. ;    0       While/EndWhile
  111. ;    0       If/Then or If/Then/Else
  112. ;    0       Select Case
  113. ;
  114. ;------------------------------------------------------------------------------
  115. ;                 AEGiS Corp - Break the routines, code against the machines!
  116. ;------------------------------------------------------------------------------
  117.