home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1994 #1
/
monster.zip
/
monster
/
PCBOARD
/
QSCANV30.ZIP
/
QSCAN.PPE
(
.txt
)
< prev
Wrap
PCBoard Programming Language Executable
|
1994-04-01
|
3KB
|
111 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
;------------------------------------------------------------------------------
Cls
PrintLn "@X0C Written by Joe Flowers (SysOp) 4/1/94 DIGITAL DANKA BBS"
Tokenize U_Name()
STRING002 = GetToken()
STRING002 = Left(STRING002, 1) + Lower(Right(STRING002, Len(STRING002) - 1))
STRING002 = "@X06 Hello,@X0B " + STRING002 + " @X06here are some QUICK stats! @X0C813-576-1043/16.8 D/S"
PrintLn STRING002
PrintLn " @X06The Current Time is @X07", TimeAp(Time())
PrintLn " @X06The Current Date is @X07", Date()
PrintLn " @X03Total Number of Messages written by you@X0D :@X0F ", U_MsgWr()
PrintLn " @X03Total Number of Messages read @X0D :@X0F ", U_MsgRd()
Newline
PrintLn " @X0BQUICK SCAN V3.00 @X07[@X87UNREGISTERED@X07]"
PrintLn "@X07┌────────────────────────────────────────────────────────────────────@X07┐"
PrintLn "@X07│@X77 @X7A* @X74Read @X7ECommands: @X7F * @X74Reply @X71Commands: @X07│"
PrintLn "@X07│@X7A @X78▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ @X07│"
PrintLn "@X07│@X7A * @X7ES @X70 -New messages current conf. @X7F* @X79R E @X70-Reply to message @X07│"
PrintLn "@X07│@X7A * @X7EA @X70 -New messages all conf's. @X7F* @X79R O @X70-Reply to another user @X07│"
PrintLn "@X07│@X7A * @X7EY @X70 -Read only messages to you @X7F* @X79K @X70-Kill a message,by number @X07│"
PrintLn "@X07│@X7A * @X7EY A @X70-Read messages to YOU & ALL @X7F* @X79E @X70-Enter a new message @X07│"
PrintLn "@X07│@X7A * @X7EL @X70-All messages last to first @X7F* @X79Z @X70-Capture a message to a @X07│"
PrintLn "@X07│@X7A * @X7E1+ @X70-All messages first to last file and download it. @X07│"
PrintLn "@X07│@X7A * @X7EF @X70-Messages from you only @X7F* @X79TS @X70-Text Search message base @X07│"
PrintLn "@X07│@X7A * @X7EJ @X70-Join a new conference ex.(@X71A;TS;DSZ@X70) about DSZ @X07│"
PrintLn "@X07│@X77 ─@X7B Note: use @X7FSPACES @X7Bin--between `c@X7Bommands` if shown above. @X7F@X07│"
PrintLn "@X07└────────────────────────────────────────────────────────────────────┘"
InputStr " @X0A(@X0FH@X0A)elp, (1-@HIGHMSGNUM@), Message Read Command", STRING001, 10, 12, Mask_Ascii(), 8
If (STRING001 == "H") Then
STRING001 = Chr(13) + "H" + Chr(32) + "R"
KbdStuff STRING001
Else
KbdStuff STRING001 + Chr(13)
Endif
;------------------------------------------------------------------------------
;
; Usage report (before postprocessing)
;
; ■ Statements used :
;
; 1 Cls
; 2 Goto
; 4 Let
; 20 PrintLn
; 1 If
; 1 InputStr
; 1 Newline
; 1 Tokenize
; 2 KbdStuff
;
;
; ■ Functions used :
;
; 7 +
; 1 -
; 1 ==
; 1 !
; 1 Len(
; 1 Lower()
; 1 Left()
; 1 Right()
; 3 Chr()
; 1 Date()
; 1 Time()
; 1 U_Name()
; 1 TimeAp()
; 1 Mask_Ascii()
; 1 U_MsgRd()
; 1 U_MsgWr()
; 1 GetToken()
;
;------------------------------------------------------------------------------
;
; Analysis flags : No flag
;
;------------------------------------------------------------------------------
;
; Postprocessing report
;
; 0 For/Next
; 0 While/EndWhile
; 1 If/Then or If/Then/Else
; 0 Select Case
;
;------------------------------------------------------------------------------
; AEGiS Corp - Break the routines, code against the machines!
;------------------------------------------------------------------------------