home *** CD-ROM | disk | FTP | other *** search
- ;------------------------------------------------------------------------------
- ; .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
- ;------------------------------------------------------------------------------
-
- String STRING001
- String STRING002
- String STRING003
- String STRING004
- String STRING005
- String STRING006
- String STRING007
-
- ;------------------------------------------------------------------------------
-
- InputStr "Do you want to leave a message for the Next Caller", STRING007, 15, 1, "YyNn", 2 + 4
- If (Upper(STRING007) <> "Y") End
- PrintLn
- PrintLn
- PrintLn "@X09Enter Your Message Now. Enter /S to save or /A to Abort (50 Lines Max)"
- PrintLn "@X09───────────────────────────────────────────────────────────────────────────────"
- Delete TempPath() + "MAIL.!!!"
- FCreate 1, TempPath() + "MAIL.!!!", 1, 0
- :LABEL001
- If (STRING005) Goto LABEL002
- STRING001 = ""
- STRING002 = 79
- STRING003 = ">_"
- STRING004 = " 0123456789!@#$%^&*()-=_+`~qwertyuiop[]\|asdfghjkl;'zxcvbnm,./<>?:{}QWERTYUIOPASDFGHJKLZXCVBNM"
- InputStr STRING003, STRING001, 9, STRING002, STRING004, 512
- Newline
- If (STRING006 > 50) STRING001 = "/S"
- STRING006 = STRING006 + 1
- If (Upper(STRING001) == "/A") STRING005 = 1
- If (Upper(STRING001) == "/S") Then
- STRING005 = 1
- PrintLn "Writing msg"
- FClose 1
- Endif
- FPut 1, STRING001
- FPut 1, Chr(13)
- Goto LABEL001
- :LABEL002
- FClose 1
- Delete PPEPath() + "lc.txt"
- Rename TempPath() + "MAIL.!!!", PPEPath() + "lc.txt"
- End
-
- ;------------------------------------------------------------------------------
- ;
- ; Usage report (before postprocessing)
- ;
- ; ■ Statements used :
- ;
- ; 2 End
- ; 3 Goto
- ; 8 Let
- ; 5 PrintLn
- ; 5 If
- ; 1 FCreate
- ; 2 FClose
- ; 2 FPut
- ; 2 Delete
- ; 2 InputStr
- ; 1 Newline
- ; 1 Rename
- ;
- ;
- ; ■ Functions used :
- ;
- ; 7 +
- ; 2 ==
- ; 1 <>
- ; 1 >
- ; 2 !
- ; 3 Upper()
- ; 1 Chr()
- ; 2 PPEPath()
- ; 3 TempPath()
- ;
- ;------------------------------------------------------------------------------
- ;
- ; 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!
- ;------------------------------------------------------------------------------
-