home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1994 #1
/
monster.zip
/
monster
/
PCBOARD
/
POWRPK10.ZIP
/
LENGTH10.ZIP
/
LENGTH.PPE
(
.txt
)
< prev
Wrap
PCBoard Programming Language Executable
|
1994-03-31
|
2KB
|
123 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
;------------------------------------------------------------------------------
String STRING001
;------------------------------------------------------------------------------
GetUser
DispFile PPEPath() + "length", 2 + 4
STRING001 = "N"
PrintLn
PrintLn " @X0F Below is a test to see if you have an abnormal screen page length.@X07"
PrintLn "@X0F If the last " + Chr(34) + "Z" + Chr(34) + " listed is at the end of the line,@X07"
PrintLn "@X0F we suggest you do not change your page length setting.@X07"
PrintLn
Wait
Cls
Print "@POFF@"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
PrintLn "Z"
Wait
PrintLn
PrintLn "@X0FIf @X8CA LOT @X0Fmore " + Chr(34) + "Z's" + Chr(34) + " can fit on the screen, or the Z's fill@X07 @X0Fthe screen more"
PrintLn "than you can see, you should change@X07 @X0Fyour page length setting.@X07"
PrintLn
PrintLn "@X0EYour Page Length is currently set at: @X0A@X07"
PrintLn U_PageLen
InputYN "Would you like to change your page length setting", STRING001, 12
If (STRING001 == "y") Goto LABEL001
If (STRING001 == "Y") Goto LABEL001
If (STRING001 == "n") End
If (STRING001 == "N") End
:LABEL001
PrintLn
PrintLn "@X0APage Length Should Be @X0E0-99 @X0A- @X0E0 @X0AMeans Continious.@X07"
InputInt "What would you like your page length to be", U_PageLen, 12
PrintLn
PrintLn
PrintLn "@X0FPage Length Set.@X07"
KbdStuff Chr(13)
KbdStuff "P" + Chr(13)
KbdStuff U_PageLen + Chr(13)
KbdStuff Chr(13)
End
;------------------------------------------------------------------------------
;
; Usage report (before postprocessing)
;
; ■ Statements used :
;
; 3 End
; 1 Cls
; 2 Wait
; 2 Goto
; 1 Let
; 1 Print
; 36 PrintLn
; 4 If
; 1 DispFile
; 1 GetUser
; 1 InputYN
; 1 InputInt
; 4 KbdStuff
;
;
; ■ Functions used :
;
; 12 +
; 4 ==
; 8 Chr()
; 1 PPEPath()
;
;------------------------------------------------------------------------------
;
; Analysis flags : No flag
;
;------------------------------------------------------------------------------
;
; Postprocessing report
;
; 0 For/Next
; 0 While/EndWhile
; 0 If/Then or If/Then/Else
; 0 Select Case
;
;------------------------------------------------------------------------------
; AEGiS Corp - Break the routines, code against the machines!
;------------------------------------------------------------------------------