home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Bila Vrana
/
BILA_VRANA.iso
/
019A
/
PCBDEMO.ZIP
/
PCBDISK1.EXE
/
RIP
/
PPE
/
BATPRMPT.PPE
(
.txt
)
< prev
next >
Wrap
PCBoard Programming Language Executable
|
1993-01-01
|
1KB
|
99 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
String STRING002
String STRING003
String STRING004
String STRING005
;------------------------------------------------------------------------------
STRING004 = Upper(GetToken())
STRING005 = "PAUSE.NOW"
Call PPEPath() + "CHKPAUSE.PPE"
If (STRING004 == "BATCH") Then
STRING001 = "@X0A(A)bort, (E)dit, (G)oodbye, (L)ist, (P)rotocol, (Enter)=continue"
STRING003 = "BATDL-PR"
Endif
If (STRING004 == "EDIT") Then
STRING001 = "@X0A(A)dd a File, (R)emove a File, (L)ist Batch, (Enter)=continue"
STRING003 = "EDITBTCH"
Endif
DispFile GetEnv("PCBRIP") + "\" + STRING003, 4
InputStr STRING001, STRING002, 10, 1, Mask_Ascii(), 128 + 8
If (STRING002 == "") STRING002 = Chr(13)
If (STRING002 == "L") Then
FCreate 1, STRING005, 2, 0
FClose 1
Endif
KbdStuff STRING002
End
;------------------------------------------------------------------------------
;
; Usage report (before postprocessing)
;
; ■ Statements used :
;
; 1 End
; 3 Goto
; 7 Let
; 4 If
; 1 DispFile
; 1 FCreate
; 1 FClose
; 1 InputStr
; 1 KbdStuff
; 1 Call
;
;
; ■ Functions used :
;
; 4 +
; 4 ==
; 3 !
; 1 Upper()
; 1 Chr()
; 1 Mask_Ascii()
; 1 PPEPath()
; 1 GetToken()
; 1 GetEnv()
;
;------------------------------------------------------------------------------
;
; Analysis flags : C
;
; C - Call child PPE ■ 3
; This is usually normal, but may be a tricky way to launch some
; sysop-only commands.
; ■ Search for : CALL
;
;------------------------------------------------------------------------------
;
; 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!
;------------------------------------------------------------------------------