home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0210 - 0219 / ibm0210-0219 / ibm0213.tar / ibm0213 / NA-PVCR.ZIP / PV_CRACK.PPE (.txt) < prev    next >
Encoding:
PCBoard Programming Language Executable  |  1994-07-11  |  963 b   |  89 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.     String   STRING001
  20.     String   STRING002
  21.     String   STRING003
  22.  
  23. ;------------------------------------------------------------------------------
  24.  
  25.     STRING001 = Upper(ReadLine(PCBDat(), 2) + ReadLine(PCBDat(), 94))
  26.     STRING002 = 1
  27.     For STRING003 = 1 To Len(STRING001) Step 3
  28.         STRING002 = Left(STRING002 * Asc(Mid(STRING001, STRING003, 1)), 6)
  29.     Next
  30.     Newline
  31.     PrintLn "@X08R@X07e@X0Fgistration Number for your board @X07i@X08s: @X08[@X07", STRING002, "@X08]"
  32.     Wait
  33.  
  34. ;------------------------------------------------------------------------------
  35. ;
  36. ; Usage report (before postprocessing)
  37. ;
  38. ; ■ Statements used :
  39. ;
  40. ;    1       Wait
  41. ;    2       Goto 
  42. ;    5       Let 
  43. ;    1       PrintLn 
  44. ;    1       If 
  45. ;    1       Newline
  46. ;
  47. ;
  48. ; ■ Functions used :
  49. ;
  50. ;    1       *
  51. ;    2       +
  52. ;    1       <
  53. ;    1       <=
  54. ;    2       >=
  55. ;    1       !
  56. ;    2       &&
  57. ;    1       ||
  58. ;    2       Len(
  59. ;    1       Upper()
  60. ;    1       Mid()
  61. ;    1       Left()
  62. ;    1       Asc()
  63. ;    2       PCBDat()
  64. ;    2       ReadLine()
  65. ;
  66. ;------------------------------------------------------------------------------
  67. ;
  68. ; Analysis flags : d
  69. ;
  70. ; d - Access PCBOARD.DAT ■ 2
  71. ;     Program gets the full pathname to PCBOARD.DAT, this may be usefull
  72. ;     for many PPE so they can find various informations on the system
  73. ;     (system paths, max number of lines in messages, ...) but it may also
  74. ;     be a way to gather vital informations.
  75. ;     ■ Search for : PCBDAT()
  76. ;
  77. ;------------------------------------------------------------------------------
  78. ;
  79. ; Postprocessing report
  80. ;
  81. ;    1       For/Next
  82. ;    0       While/EndWhile
  83. ;    0       If/Then or If/Then/Else
  84. ;    0       Select Case
  85. ;
  86. ;------------------------------------------------------------------------------
  87. ;                 AEGiS Corp - Break the routines, code against the machines!
  88. ;------------------------------------------------------------------------------
  89.