home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / NEWALIAS.ZIP / ALIAS.PPE (.txt) < prev    next >
Encoding:
PCBoard Programming Language Executable  |  1993-09-18  |  875 b   |  87 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   STRING002
  20.  
  21. ;------------------------------------------------------------------------------
  22.  
  23.     If (Psa(1)) Then
  24.         GetUser
  25.     Endif
  26.     PrintLn "@X0ENewAlias PPE V1.0 - Copyrite 1993 by Al Massari"
  27.     PrintLn "@X0EUnRegistered Copy"
  28.     InputYN "@X0BDo you what to change your Alias (Enter=No)", STRING002, 10
  29.     If (STRING002 == YesChar()) Goto LABEL001
  30.     If (STRING002 == NoChar()) Goto LABEL002
  31.     If (STRING002 == "") Goto LABEL002
  32.     :LABEL001
  33.     If (Psa(1)) Then
  34.         GetUser
  35.         PrintLn 
  36.         Input "@X0AWhat is your new Alias (Enter=No Change)", U_Alias
  37.         PutUser
  38.     Endif
  39.     :LABEL002
  40.     End
  41.  
  42. ;------------------------------------------------------------------------------
  43. ;
  44. ; Usage report (before postprocessing)
  45. ;
  46. ; ■ Statements used :
  47. ;
  48. ;    1       End
  49. ;    5       Goto 
  50. ;    3       PrintLn 
  51. ;    5       If 
  52. ;    1       Input 
  53. ;    2       GetUser
  54. ;    1       PutUser
  55. ;    1       InputYN 
  56. ;
  57. ;
  58. ; ■ Functions used :
  59. ;
  60. ;    3       ==
  61. ;    2       !
  62. ;    1       NoChar()
  63. ;    1       YesChar()
  64. ;    2       Psa()
  65. ;
  66. ;------------------------------------------------------------------------------
  67. ;
  68. ; Analysis flags : W
  69. ;
  70. ; W - Write user ■ 5
  71. ;     Program writes a user record. Although this may be normal for a
  72. ;     User Editor, it may also be a way to modify an account level.
  73. ;     ■ Search for : PUTUSER
  74. ;
  75. ;------------------------------------------------------------------------------
  76. ;
  77. ; Postprocessing report
  78. ;
  79. ;    0       For/Next
  80. ;    0       While/EndWhile
  81. ;    2       If/Then or If/Then/Else
  82. ;    0       Select Case
  83. ;
  84. ;------------------------------------------------------------------------------
  85. ;                 AEGiS Corp - Break the routines, code against the machines!
  86. ;------------------------------------------------------------------------------
  87.