home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / BBS / POB_SC2.ZIP / POB_SC2.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1995-01-06  |  2KB  |  135 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.     Real     REAL001
  20.     String   STRING002
  21.     String   STRING003
  22.     String   STRING004
  23.     String   STRING005
  24.     String   STRING006
  25.     String   STRING007
  26.     String   STRING008
  27.     BigStr   BIGSTR001
  28.  
  29. ;------------------------------------------------------------------------------
  30.  
  31.     :LABEL001
  32.     Cls
  33.     Newline
  34.     Newline
  35.     InputStr "@X0FUsername: ", STRING002, 14, 20, Mask_Ascii(), 0 + 64 + 8
  36.     InputStr "@X0FSerial #: ", STRING003, 14, 6, Mask_Ascii(), 0 + 64
  37.     InputStr "@X0FLineversion: ", REAL001, 14, 4, "1250", 64
  38.     InputStr "@X0FCode: ", STRING004, 14, 10, Mask_Ascii(), 0 + 64 + 8
  39.     InputYN "@X0Fregistered for PPL: ", STRING006, 14
  40.     STRING005 = ""
  41.     If (STRING006 == YesChar()) STRING005 = "PPL"
  42.     BIGSTR001 = String(STRING003) + " " + "/" + String(REAL001) + " " + String(STRING004) + " " + String(STRING005)
  43.     GetAltUser U_RecNum(STRING002)
  44.     Cls
  45.     PrintLn ""
  46.     PrintLn ""
  47.     PrintLn ""
  48.     PrintLn "@X0FUSERNAME: " + STRING002
  49.     Print "@X0FUSER RECORD #: "
  50.     PrintLn U_RecNum(STRING002)
  51.     PrintLn "@X0FCODE FOR PCBOARD DOOR:@X0E " + BIGSTR001
  52.     PrintLn ""
  53.     PrintLn ""
  54.     InputYN "@X0CIs the Information OK to store in USER-RECORD ", STRING008, 15
  55.     PrintLn ""
  56.     If (STRING008 == YesChar()) Then
  57.         U_Cmnt2 = BIGSTR001
  58.         PrintLn ""
  59.         PrintLn ""
  60.         PrintLn "@X0FCOMMENT-LINE #2 changed to:@X0A ", U_Cmnt2
  61.         PrintLn ""
  62.         PrintLn ""
  63.         PrintLn "                                                                  @X08POB(@X0Ac@X08)1995"
  64.         PrintLn ""
  65.         U_Sec = 20
  66.         U_ExpDate = Date() + 365
  67.         PutUser
  68.     Else
  69.         PrintLn ""
  70.         InputYN "@X0FContinue with code-entry ", STRING007, 14
  71.         PrintLn ""
  72.     Endif
  73.     If (STRING007 == YesChar()) Goto LABEL001
  74.     Wait
  75.  
  76. ;------------------------------------------------------------------------------
  77. ;
  78. ; Usage report (before postprocessing)
  79. ;
  80. ; ■ Statements used :
  81. ;
  82. ;    2       Cls
  83. ;    1       Wait
  84. ;    3       Goto 
  85. ;    6       Let 
  86. ;    1       Print 
  87. ;    18      PrintLn 
  88. ;    3       If 
  89. ;    1       PutUser
  90. ;    4       InputStr 
  91. ;    3       InputYN 
  92. ;    2       Newline
  93. ;    1       GetAltUser 
  94. ;
  95. ;
  96. ; ■ Functions used :
  97. ;
  98. ;    15      +
  99. ;    3       ==
  100. ;    1       !
  101. ;    1       Date()
  102. ;    3       YesChar()
  103. ;    4       String()
  104. ;    3       Mask_Ascii()
  105. ;    2       U_RecNum()
  106. ;
  107. ;------------------------------------------------------------------------------
  108. ;
  109. ; Analysis flags : WR
  110. ;
  111. ; W - Write user ■ 5
  112. ;     Program writes a user record. Although this may be normal for a
  113. ;     User Editor, it may also be a way to modify an account level.
  114. ;     ■ Search for : PUTUSER
  115. ;
  116. ; R - Read user ■ 5
  117. ;     User records are read, this may signify that someone wants to get
  118. ;     various informations about a user (for example his password), but
  119. ;     this may also be normal for a program accessing user records (for
  120. ;     example a User Editor)
  121. ;     ■ Search for : GETALTUSER
  122. ;
  123. ;------------------------------------------------------------------------------
  124. ;
  125. ; Postprocessing report
  126. ;
  127. ;    0       For/Next
  128. ;    0       While/EndWhile
  129. ;    1       If/Then or If/Then/Else
  130. ;    0       Select Case
  131. ;
  132. ;------------------------------------------------------------------------------
  133. ;                 AEGiS Corp - Break the routines, code against the machines!
  134. ;------------------------------------------------------------------------------
  135.