home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Bila Vrana
/
BILA_VRANA.iso
/
019A
/
PCBDEMO.ZIP
/
PCBDISK1.EXE
/
RIP
/
PPE
/
PAGELEN.PPE
(
.txt
)
< prev
next >
Wrap
PCBoard Programming Language Executable
|
1993-01-01
|
1KB
|
108 lines
;------------------------------------------------------------------------------
; .ss.
; `²²'
; .,sS$Ss,,s$ .,sS$$$Ss. .,sS$Ss,,s$ .ss. .sSs.
; .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
; $$$' .$$$' $$$²Sçsµ²' .$$$' .$$$'.$$$' .$$$' `$$b.
; $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$' ;$$$
; `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
; .sS²°$$$²²°"' d²°'
; .$$² .$$'
; $$$.,d$$'
; `²S$$S²'
;------------------------------------------------------------------------------
; P.P.L.X. 2.OO (C)1996 - Lone Runner / AEGiS CoRP'96
;------------------------------------------------------------------------------
; PPE 2.OO (plain) - Analysis ON - Postprocessing ON
;------------------------------------------------------------------------------
Integer INTEGER002
Integer INTEGER003
String STRING001
String STRING002
;------------------------------------------------------------------------------
STRING002 = Chr(27) + "[2D"
GetUser
INTEGER002 = U_PageLen
INTEGER003 = INTEGER002
DispFile PPEPath() + "PAGELEN.RIP", 0
PrintLn "!|10$COFF$|#|#|#"
Gosub LABEL001
While (STRING001 <> "S") Do
STRING001 = Upper(Inkey())
If ((STRING001 == "=") && (INTEGER002 < 43)) INTEGER002 = INTEGER002 + 1
If ((STRING001 == "-") && (INTEGER002 > 0)) INTEGER002 = INTEGER002 - 1
If (STRING001 == "D") INTEGER002 = INTEGER003
If (STRING001 == "N") INTEGER002 = 0
Gosub LABEL001
Delay 4
EndWhile
U_PageLen = INTEGER002
PutUser
PrintLn
PrintLn "!|*|10$CON$|#|#|#"
End
:LABEL001
Print "@X70" + Left(INTEGER002, 2) + STRING002
Return
;------------------------------------------------------------------------------
;
; Usage report (before postprocessing)
;
; ■ Statements used :
;
; 1 End
; 2 Goto
; 9 Let
; 1 Print
; 3 PrintLn
; 5 If
; 1 DispFile
; 1 GetUser
; 1 PutUser
; 2 Gosub
; 1 Return
; 1 Delay
;
;
; ■ Functions used :
;
; 5 +
; 1 -
; 4 ==
; 1 <>
; 1 <
; 1 >
; 1 !
; 2 &&
; 1 Upper()
; 1 Left()
; 1 Chr()
; 1 Inkey()
; 1 PPEPath()
;
;------------------------------------------------------------------------------
;
; Analysis flags : W
;
; W - Write user ■ 5
; Program writes a user record. Although this may be normal for a
; User Editor, it may also be a way to modify an account level.
; ■ Search for : PUTUSER
;
;------------------------------------------------------------------------------
;
; Postprocessing report
;
; 0 For/Next
; 1 While/EndWhile
; 0 If/Then or If/Then/Else
; 0 Select Case
;
;------------------------------------------------------------------------------
; AEGiS Corp - Break the routines, code against the machines!
;------------------------------------------------------------------------------