home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / X_PERT.ZIP / X-PERT.PPE (.txt) < prev   
Encoding:
PCBoard Programming Language Executable  |  1993-08-29  |  1.2 KB  |  90 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.     String   STRING001
  20.     String   STRING002
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     GetUser
  25.     If (U_Expert == 0) Goto LABEL001
  26.     If (U_Expert == 1) Goto LABEL000
  27.     InputStr "@X0EAre you @X0CSURE @X0Ethat you want to turn expert mode off @X0C(Y/N) ", STRING002, 12, 1, "YN", 2 + 4 + 8
  28.     If (STRING002 == "N") Goto LABEL002
  29.     U_Expert = 0
  30.     Goto LABEL002
  31.     :LABEL001
  32.     InputStr "@X0EAre you @X0CSURE @X0Ethat you want to turn expert mode on @X0C(Y/N) ", STRING001, 12, 1, "YN", 2 + 4 + 8
  33.     If (STRING002 == "N") Goto LABEL002
  34.     U_Expert = 1
  35.     :LABEL002
  36.     Newline
  37.     Print "  @X0E┌──────────────────────────────────────┐@X0F"
  38.     Newline
  39.     Print "  @X0E│ @X0CX-Pert [PPE] v.1 by Kris Steinwender @X0E│@X0F"
  40.     Newline
  41.     Print "  @X0E└──────────────────────────────────────┘@X0F"
  42.     Log "X-Pert v. 1 ", 0
  43.     PutUser
  44.     End
  45.  
  46. ;------------------------------------------------------------------------------
  47. ;
  48. ; Usage report (before postprocessing)
  49. ;
  50. ; ■ Statements used :
  51. ;
  52. ;    1       End
  53. ;    6       Goto 
  54. ;    2       Let 
  55. ;    3       Print 
  56. ;    4       If 
  57. ;    1       GetUser
  58. ;    1       PutUser
  59. ;    1       Log 
  60. ;    2       InputStr 
  61. ;    3       Newline
  62. ;
  63. ;
  64. ; ■ Functions used :
  65. ;
  66. ;    4       +
  67. ;    4       ==
  68. ;
  69. ;------------------------------------------------------------------------------
  70. ;
  71. ; Analysis flags : W
  72. ;
  73. ; W - Write user ■ 5
  74. ;     Program writes a user record. Although this may be normal for a
  75. ;     User Editor, it may also be a way to modify an account level.
  76. ;     ■ Search for : PUTUSER
  77. ;
  78. ;------------------------------------------------------------------------------
  79. ;
  80. ; Postprocessing report
  81. ;
  82. ;    0       For/Next
  83. ;    0       While/EndWhile
  84. ;    0       If/Then or If/Then/Else
  85. ;    0       Select Case
  86. ;
  87. ;------------------------------------------------------------------------------
  88. ;                 AEGiS Corp - Break the routines, code against the machines!
  89. ;------------------------------------------------------------------------------
  90.