home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / JM_RF_14.ZIP / LOGON.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1995-04-09  |  2KB  |  132 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.1O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Boolean  BOOLEAN001
  20.     Integer  INTEGER001
  21.     String   STRING001
  22.     String   STRING002
  23.     String   STRING003
  24.     Declare  Procedure PROC001()
  25.  
  26. ;------------------------------------------------------------------------------
  27.  
  28.     PROC001()
  29.     End
  30.  
  31. ;------------------------------------------------------------------------------
  32.  
  33.     Procedure PROC001()
  34.  
  35.     GetUser
  36.     INTEGER001 = U_RecNum(U_Name())
  37.     BOOLEAN001 = 0
  38.     STRING003 = GetEnv("PCBDRIV") + GetEnv("PCBDIR")
  39.     If (Exist(PPEPath() + "USERLOST" + LangExt())) Then
  40.         STRING002 = PPEPath() + "USERLOST" + LangExt()
  41.     Else
  42.         STRING002 = PPEPath() + "USERLOST"
  43.     Endif
  44.     If (Exist(PPEPath() + "R" + String(INTEGER001) + ".HNG")) Then
  45.         If (Exist(STRING002)) Then
  46.             DispFile STRING002, 4 + 2 + 1
  47.         Else
  48.             PrintLn "@X19┌─────────────────────────────────────────────────────────────────────────────@X10┐@X07"
  49.             PrintLn "@X19│ @X1EYou lost carrier or hungup with files still in your FLAGGED FILES LIST.     @X10│@X07"
  50.             PrintLn "@X19│ @X1E                                                                            @X10│@X07"
  51.             PrintLn "@X19│ @X1EWould you like to FLAG those files again (@X1F@YESCHAR@@X1E/@X1F@NOCHAR@@X1E)                              @X10│@X07"
  52.             PrintLn "@X19└@X10─────────────────────────────────────────────────────────────────────────────┘@X07"
  53.         Endif
  54.     Else
  55.         End
  56.     Endif
  57.     :LABEL001
  58.     If (BOOLEAN001) Goto LABEL002
  59.     STRING001 = Inkey()
  60.     Select Case (STRING001)
  61.         Case NoChar()
  62.             BOOLEAN001 = 1
  63.         Case YesChar()
  64.             BOOLEAN001 = 1
  65.         Case Else
  66.             Delay 2
  67.     End Select
  68.     Goto LABEL001
  69.     :LABEL002
  70.     If (STRING001 == NoChar()) Then
  71.         Delete PPEPath() + "R" + String(INTEGER001) + ".HNG"
  72.     Else
  73.         Copy PPEPath() + "R" + String(INTEGER001) + ".HNG", STRING003 + "FLIST." + String(PcbNode())
  74.     Endif
  75.     If (Exist(PPEPath() + "R" + String(INTEGER001) + ".HNG")) Delete PPEPath() + "R" + String(INTEGER001) + ".HNG"
  76.  
  77.     EndProc
  78.  
  79.  
  80. ;------------------------------------------------------------------------------
  81. ;
  82. ; Usage report (before postprocessing)
  83. ;
  84. ; ■ Statements used :
  85. ;
  86. ;    2       End
  87. ;    15      Goto 
  88. ;    8       Let 
  89. ;    5       PrintLn 
  90. ;    8       If 
  91. ;    1       DispFile 
  92. ;    1       GetUser
  93. ;    2       Delete 
  94. ;    1       Delay 
  95. ;    1       Copy 
  96. ;    1       EndProc
  97. ;
  98. ;
  99. ; ■ Functions used :
  100. ;
  101. ;    25      +
  102. ;    3       ==
  103. ;    7       !
  104. ;    1       U_Name()
  105. ;    2       NoChar()
  106. ;    1       YesChar()
  107. ;    1       Inkey()
  108. ;    6       String()
  109. ;    8       PPEPath()
  110. ;    1       PcbNode()
  111. ;    2       GetEnv()
  112. ;    4       Exist()
  113. ;    2       LangExt()
  114. ;    1       U_RecNum()
  115. ;
  116. ;------------------------------------------------------------------------------
  117. ;
  118. ; Analysis flags : No flag
  119. ;
  120. ;------------------------------------------------------------------------------
  121. ;
  122. ; Postprocessing report
  123. ;
  124. ;    0       For/Next
  125. ;    0       While/EndWhile
  126. ;    4       If/Then or If/Then/Else
  127. ;    1       Select Case
  128. ;
  129. ;------------------------------------------------------------------------------
  130. ;                 AEGiS Corp - Break the routines, code against the machines!
  131. ;------------------------------------------------------------------------------
  132.