home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / TKGALORE.ZIP / TK-LSR.ZIP / LOOSER.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1996-05-17  |  2KB  |  101 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.     Integer  INTEGER001
  20.     String   STRING001
  21.     String   STRING002
  22.  
  23. ;------------------------------------------------------------------------------
  24.  
  25.     PrintLn "@CLS@@X08 .---------------------------------------------------------------------------."
  26.     PrintLn " @X08|                  @X03Loosers that have uploaded less then 500K   @X08             |"
  27.     PrintLn "<---------------------------.----------------------------.----------.--------->"
  28.     PrintLn "|  @X04Users Name@X08               | @X04User Location@X08              | @X04Uploads  @X08| @X04Files@X08   |"
  29.     PrintLn "<---------------------------#----------------------------#----------#--------->"
  30.     INTEGER001 = 1
  31.     GetAltUser INTEGER001
  32.     While (U_RecNum(U_Name()) == INTEGER001) Do
  33.         If (U_Bul() < 500000) Then
  34.             STRING001 = String(U_Bul())
  35.             STRING002 = String(U_Ful())
  36.             If (Len(STRING001) == 6) STRING001 = Mid(STRING001, 1, 3) + "," + Mid(STRING001, 4, 3)
  37.             If (Len(STRING001) == 5) STRING001 = Mid(STRING001, 1, 2) + "," + Mid(STRING001, 3, 3)
  38.             If (Len(STRING001) == 4) STRING001 = Mid(STRING001, 1, 1) + "," + Mid(STRING001, 2, 3)
  39.             PrintLn "@X08 | @X05" + U_Name() + "@X08@POS:29@| @X02" + U_City + "@POS:58@@X08| @X06" + Space(8 - Len(STRING001)) + STRING001 + "@POS:69@@X08|@X01" + Space(7 - Len(STRING002)) + STRING002 + "@POS:78@@X08|"
  40.         Endif
  41.         Inc INTEGER001
  42.         GetAltUser INTEGER001
  43.     EndWhile
  44.     PrintLn "@X08<---------------------------^----------------------------^----------^--------->"
  45.     PrintLn "|   @X07Loosers V1.0 is a Toxic Krystal Production Coded by: THe BLaCK aSSaSSiN   @X08|"
  46.     PrintLn "<----------------------------------------------------------------------------->"
  47.  
  48. ;------------------------------------------------------------------------------
  49. ;
  50. ; Usage report (before postprocessing)
  51. ;
  52. ; ■ Statements used :
  53. ;
  54. ;    3       Goto 
  55. ;    6       Let 
  56. ;    9       PrintLn 
  57. ;    5       If 
  58. ;    1       Inc 
  59. ;    2       GetAltUser 
  60. ;
  61. ;
  62. ; ■ Functions used :
  63. ;
  64. ;    16      +
  65. ;    2       -
  66. ;    4       ==
  67. ;    1       <
  68. ;    2       !
  69. ;    5       Len(
  70. ;    6       Mid()
  71. ;    2       Space()
  72. ;    2       U_Name()
  73. ;    1       U_Ful()
  74. ;    2       U_Bul()
  75. ;    2       String()
  76. ;    1       U_RecNum()
  77. ;
  78. ;------------------------------------------------------------------------------
  79. ;
  80. ; Analysis flags : R
  81. ;
  82. ; R - Read user ■ 5
  83. ;     User records are read, this may signify that someone wants to get
  84. ;     various informations about a user (for example his password), but
  85. ;     this may also be normal for a program accessing user records (for
  86. ;     example a User Editor)
  87. ;     ■ Search for : GETALTUSER
  88. ;
  89. ;------------------------------------------------------------------------------
  90. ;
  91. ; Postprocessing report
  92. ;
  93. ;    0       For/Next
  94. ;    1       While/EndWhile
  95. ;    1       If/Then or If/Then/Else
  96. ;    0       Select Case
  97. ;
  98. ;------------------------------------------------------------------------------
  99. ;                 AEGiS Corp - Break the routines, code against the machines!
  100. ;------------------------------------------------------------------------------
  101.