home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / PIN.ZIP / PIN.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-09-02  |  2KB  |  161 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 1.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     String   STRING002
  21.     String   STRING003
  22.     String   STRING004
  23.     String   STRING005
  24.  
  25. ;------------------------------------------------------------------------------
  26.  
  27.     INTEGER001 = 3
  28.     GetUser
  29.     If (Strip(U_Ver, " ") == "") Then
  30.         DispFile "\pcb\pin\newuser", 1
  31.         Goto LABEL001
  32.     Else
  33.         Goto LABEL006
  34.     Endif
  35.     :LABEL001
  36.     Newline
  37.     InputStr "Please enter a 4 digit Personal Identification Number (PIN): ", STRING002, 14, 4, "0123456789", 1
  38.     If (Len(STRING002) < 4) Then
  39.         Goto LABEL003
  40.     Else
  41.         Goto LABEL002
  42.     Endif
  43.     :LABEL002
  44.     Newline
  45.     Newline
  46.     Newline
  47.     InputStr "Please re-enter your number to verify: ", STRING003, 14, 4, "0123456789", 1
  48.     PrintLn "@CLS@@X0E"
  49.     If (STRING002 == STRING003) Then
  50.         Goto LABEL005
  51.     Else
  52.         Goto LABEL004
  53.     Endif
  54.     :LABEL003
  55.     Newline
  56.     PrintLn "@X00@X0CYou must enter a 4 digit number!@XFF"
  57.     Newline
  58.     Goto LABEL001
  59.     :LABEL004
  60.     Newline
  61.     PrintLn "@CLS@@X00@X0CThe PIN numbers entered do not match!@XFF"
  62.     Goto LABEL001
  63.     :LABEL005
  64.     DispFile "\pcb\pin\pinwarn", 1
  65.     PrintLn "@MORE@"
  66.     U_Ver = STRING002
  67.     PutUser
  68.     DispFile "\pcb\gen\newuser", 1
  69.     Goto LABEL008
  70.     :LABEL006
  71.     Newline
  72.     Newline
  73.     InputStr "Please enter your 4 digit PIN: ", STRING004, 14, 4, "0123456789", 1
  74.     If (STRING004 == U_Ver) Then
  75.         Goto LABEL008
  76.     Else
  77.         Log "Invalid PIN entered (" + STRING004 + ")", 0
  78.         Goto LABEL007
  79.     Endif
  80.     U_Ver = STRING002
  81.     PutUser
  82.     :LABEL007
  83.     Newline
  84.     PrintLn "@X00@X0CThe PIN you have entered is incorrect!@XFF"
  85.     Newline
  86.     InputStr "Please re-enter your PIN: ", STRING005, 14, 4, "0123456789", 1
  87.     If ((STRING005 <> U_Ver) && (INTEGER001 > 1)) Then
  88.         Log "Invalid PIN entered (" + STRING005 + ")", 0
  89.         Dec INTEGER001
  90.         Goto LABEL007
  91.     ElseIf (STRING005 == U_Ver) Then
  92.         Goto LABEL008
  93.     Endif
  94.     Message 0, "Sysop", U_Name(), "Invalid PIN", "R", 0, 0, 0, "\pcb\pin\sysmsg"
  95.     Log "Invalid PIN entered (" + STRING005 + ")", 0
  96.     Log "4 Invalid PIN attempts - Automatic Disconnect", 1
  97.     DispFile "\pcb\pin\hangup", 1
  98.     Hangup
  99.     :LABEL008
  100.  
  101. ;------------------------------------------------------------------------------
  102. ;
  103. ; Usage report (before postprocessing)
  104. ;
  105. ; ■ Statements used :
  106. ;
  107. ;    24      Goto 
  108. ;    3       Let 
  109. ;    5       PrintLn 
  110. ;    6       If 
  111. ;    4       DispFile 
  112. ;    1       Hangup
  113. ;    1       GetUser
  114. ;    2       PutUser
  115. ;    4       Log 
  116. ;    4       InputStr 
  117. ;    1       Dec 
  118. ;    11      Newline
  119. ;    1       Message 
  120. ;
  121. ;
  122. ; ■ Functions used :
  123. ;
  124. ;    6       +
  125. ;    4       ==
  126. ;    1       <>
  127. ;    1       <
  128. ;    1       >
  129. ;    6       !
  130. ;    1       &&
  131. ;    1       Len(
  132. ;    1       U_Name()
  133. ;    1       Strip()
  134. ;
  135. ;------------------------------------------------------------------------------
  136. ;
  137. ; Analysis flags : WB
  138. ;
  139. ; W - Write user ■ 5
  140. ;     Program writes a user record. Although this may be normal for a
  141. ;     User Editor, it may also be a way to modify an account level.
  142. ;     ■ Search for : PUTUSER
  143. ;
  144. ; B - Brute hangup ■ 1
  145. ;     Program hangup without notification. This may be a good way to
  146. ;     disconnect a user, but if used randomly, may be very nasty
  147. ;     ■ Search for : HANGUP, DTROFF
  148. ;
  149. ;------------------------------------------------------------------------------
  150. ;
  151. ; Postprocessing report
  152. ;
  153. ;    0       For/Next
  154. ;    0       While/EndWhile
  155. ;    6       If/Then or If/Then/Else
  156. ;    0       Select Case
  157. ;
  158. ;------------------------------------------------------------------------------
  159. ;                 AEGiS Corp - Break the routines, code against the machines!
  160. ;------------------------------------------------------------------------------
  161.