home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / T / THTMT312.ZIP / HANGUP.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1994-03-14  |  842b  |  94 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.     String   STRING004
  23.     String   STRING005
  24.     String   STRING006
  25.  
  26. ;------------------------------------------------------------------------------
  27.  
  28.     GetUser
  29.     FOpen 1, PPEPath() + "THT-INFO.LVL", 0, 0
  30.     FGet 1, STRING005
  31.     FGet 1, STRING003
  32.     FGet 1, STRING004
  33.     FGet 1, STRING001
  34.     FGet 1, STRING006
  35.     FGet 1, STRING002
  36.     FClose 1
  37.     If (STRING005 <> "NONE") Then
  38.         U_Sec = STRING005
  39.         PutUser
  40.     Endif
  41.     If (STRING001 == "TRUE") Hangup
  42.  
  43. ;------------------------------------------------------------------------------
  44. ;
  45. ; Usage report (before postprocessing)
  46. ;
  47. ; ■ Statements used :
  48. ;
  49. ;    1       Goto 
  50. ;    1       Let 
  51. ;    2       If 
  52. ;    1       FOpen 
  53. ;    1       FClose 
  54. ;    6       FGet 
  55. ;    1       Hangup
  56. ;    1       GetUser
  57. ;    1       PutUser
  58. ;
  59. ;
  60. ; ■ Functions used :
  61. ;
  62. ;    1       +
  63. ;    1       ==
  64. ;    1       <>
  65. ;    1       !
  66. ;    1       PPEPath()
  67. ;
  68. ;------------------------------------------------------------------------------
  69. ;
  70. ; Analysis flags : WB
  71. ;
  72. ; W - Write user ■ 5
  73. ;     Program writes a user record. Although this may be normal for a
  74. ;     User Editor, it may also be a way to modify an account level.
  75. ;     ■ Search for : PUTUSER
  76. ;
  77. ; B - Brute hangup ■ 1
  78. ;     Program hangup without notification. This may be a good way to
  79. ;     disconnect a user, but if used randomly, may be very nasty
  80. ;     ■ Search for : HANGUP, DTROFF
  81. ;
  82. ;------------------------------------------------------------------------------
  83. ;
  84. ; Postprocessing report
  85. ;
  86. ;    0       For/Next
  87. ;    0       While/EndWhile
  88. ;    1       If/Then or If/Then/Else
  89. ;    0       Select Case
  90. ;
  91. ;------------------------------------------------------------------------------
  92. ;                 AEGiS Corp - Break the routines, code against the machines!
  93. ;------------------------------------------------------------------------------
  94.