home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / S / SDE-PL11.ZIP / SDE-PL.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1996-03-30  |  2KB  |  123 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.2O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER002
  20.     Integer  INTEGER003
  21.     Integer  INTEGER004
  22.     Integer  INTEGER005
  23.     String   STRING001
  24.  
  25. ;------------------------------------------------------------------------------
  26.  
  27.     GetUser
  28.     Cls
  29.     StartDisp 1
  30.     Log "SyNDRoME Page-Lenght has been started", 0
  31.     DispFile PPEPath() + "pageln.ans", 1
  32.     Newline
  33.     INTEGER002 = U_PageLen
  34.     Print "@X01U@X09SE @X01C@X09URSOR @X01U@X09P@X08/@X01D@X09OWN @X01T@X09O @X01C@X09HANGE @X01N@X09UMBER @X01O@X09F @X01L@X09INES@X08. @X01E@X09SC @X01T@X09O @X01Q@X09UIT@X08. @X01E@X09NTER @X01T@X09O @X01S@X09AVE@X09. @X08[@X09"
  35.     INTEGER003 = GetX()
  36.     INTEGER004 = GetY()
  37.     Print INTEGER002, "@X08]@X09"
  38.     INTEGER005 = 0
  39.     While ((INTEGER005 <> 13) && (INTEGER005 <> 27)) Do
  40.         STRING001 = Inkey()
  41.         INTEGER005 = Asc(STRING001)
  42.         If (STRING001 == "UP") Then
  43.             Inc INTEGER002
  44.             If (INTEGER002 > 99) INTEGER002 = 99
  45.             AnsiPos INTEGER003, INTEGER004
  46.             Print INTEGER002, "@X08]@X09"
  47.         Endif
  48.         If (STRING001 == "DOWN") Then
  49.             Dec INTEGER002
  50.             If (INTEGER002 < 10) INTEGER002 = 10
  51.             AnsiPos INTEGER003, INTEGER004
  52.             Print INTEGER002, "@X08]@X09"
  53.         Endif
  54.     EndWhile
  55.     If (INTEGER005 == 13) Then
  56.         U_PageLen = INTEGER002
  57.         PutUser
  58.     Endif
  59.     Cls
  60.     PrintLn "@X08(@X0FSYNDR0Mε PAGε-LεNGHT BY STεÆM@X08)(@X0FGFX & DεSiGN BY RÆYMÆN@X08)"
  61.     End
  62.  
  63. ;------------------------------------------------------------------------------
  64. ;
  65. ; Usage report (before postprocessing)
  66. ;
  67. ; ■ Statements used :
  68. ;
  69. ;    1       End
  70. ;    2       Cls
  71. ;    6       Goto 
  72. ;    9       Let 
  73. ;    4       Print 
  74. ;    1       PrintLn 
  75. ;    6       If 
  76. ;    1       DispFile 
  77. ;    1       StartDisp 
  78. ;    1       GetUser
  79. ;    1       PutUser
  80. ;    1       Log 
  81. ;    1       Inc 
  82. ;    1       Dec 
  83. ;    1       Newline
  84. ;    2       AnsiPos 
  85. ;
  86. ;
  87. ; ■ Functions used :
  88. ;
  89. ;    1       +
  90. ;    3       ==
  91. ;    2       <>
  92. ;    1       <
  93. ;    1       >
  94. ;    4       !
  95. ;    1       &&
  96. ;    1       Asc()
  97. ;    1       Inkey()
  98. ;    1       PPEPath()
  99. ;    1       GetX()
  100. ;    1       GetY()
  101. ;
  102. ;------------------------------------------------------------------------------
  103. ;
  104. ; Analysis flags : W
  105. ;
  106. ; W - Write user ■ 5
  107. ;     Program writes a user record. Although this may be normal for a
  108. ;     User Editor, it may also be a way to modify an account level.
  109. ;     ■ Search for : PUTUSER
  110. ;
  111. ;------------------------------------------------------------------------------
  112. ;
  113. ; Postprocessing report
  114. ;
  115. ;    0       For/Next
  116. ;    1       While/EndWhile
  117. ;    3       If/Then or If/Then/Else
  118. ;    0       Select Case
  119. ;
  120. ;------------------------------------------------------------------------------
  121. ;                 AEGiS Corp - Break the routines, code against the machines!
  122. ;------------------------------------------------------------------------------
  123.