home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1994 #1
/
monster.zip
/
monster
/
PCBOARD
/
CBOX27.ZIP
/
OPAGE.PPE
(
.txt
)
< prev
next >
Wrap
PCBoard Programming Language Executable
|
1994-03-04
|
855b
|
93 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 1.OO (plain) - Analysis ON - Postprocessing ON
;------------------------------------------------------------------------------
Integer INTEGER001
String STRING001
;------------------------------------------------------------------------------
STRING001 = PPEPath()
PageOn
WrUSys
Shell 0, INTEGER001, STRING001 + "CHATBOX.EXE", "CHATBOX.CNF /PPE"
RdUSys
If (INTEGER001 == 89) Then
KbdStuff Chr(13) + "C" + Chr(13)
Endif
If (INTEGER001 == 121) Then
KbdStuff Chr(13) + "C" + Chr(13) + YesChar() + Chr(13)
Endif
If (((INTEGER001 <> 89) && (INTEGER001 <> 121)) && (INTEGER001 <> 80)) Then
PageOff
Endif
Cls
End
;------------------------------------------------------------------------------
;
; Usage report (before postprocessing)
;
; ■ Statements used :
;
; 1 End
; 1 Cls
; 3 Goto
; 1 Let
; 3 If
; 1 Shell
; 2 KbdStuff
; 1 WrUSys
; 1 RdUSys
; 1 PageOn
; 1 PageOff
;
;
; ■ Functions used :
;
; 7 +
; 2 ==
; 3 <>
; 3 !
; 2 &&
; 5 Chr()
; 1 YesChar()
; 1 PPEPath()
;
;------------------------------------------------------------------------------
;
; Analysis flags : S
;
; S - Shell to DOS ■ 5
; This may be normal if the PPE need to execute an external command,
; but may be actually anything... nasty (formating HD, rebooting,...)
; or usefull (sorting, maintenance,...). Check!
; ■ Search for : SHELL
;
;------------------------------------------------------------------------------
;
; Postprocessing report
;
; 0 For/Next
; 0 While/EndWhile
; 3 If/Then or If/Then/Else
; 0 Select Case
;
;------------------------------------------------------------------------------
; AEGiS Corp - Break the routines, code against the machines!
;------------------------------------------------------------------------------