home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / F / F!-LO101.ZIP / MSG.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1995-02-21  |  1KB  |  83 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.O1 (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     Integer  INTEGER002
  21.     String   STRING001
  22.  
  23. ;------------------------------------------------------------------------------
  24.  
  25.     FOpen 1, PPEPath() + "XY.TMP", 2, 3
  26.     FGet 1, INTEGER001
  27.     FGet 1, INTEGER002
  28.     FClose 1
  29.     AnsiPos INTEGER001 + 2, INTEGER002 + 1
  30.     Print "@X0F@X07   [---up---to-38-characters---]"
  31.     AnsiPos INTEGER001 + 2, INTEGER002 + 2
  32.     Print "                                                    "
  33.     AnsiPos INTEGER001 + 2, INTEGER002 + 2
  34.     Print "> "
  35.     AnsiPos INTEGER001 + 3, INTEGER002 + 2
  36.     InputStr "@X00", STRING001, 0, 38, Mask_Ascii(), 8
  37.     If (STRING001 == "") End
  38.     FOpen 1, PPEPath() + "lastcall.not", 2, 3
  39.     FPutLn 1, STRING001
  40.     FClose 1
  41.     End
  42.  
  43. ;------------------------------------------------------------------------------
  44. ;
  45. ; Usage report (before postprocessing)
  46. ;
  47. ; ■ Statements used :
  48. ;
  49. ;    2       End
  50. ;    3       Print 
  51. ;    1       If 
  52. ;    2       FOpen 
  53. ;    2       FClose 
  54. ;    2       FGet 
  55. ;    1       FPutLn 
  56. ;    1       InputStr 
  57. ;    4       AnsiPos 
  58. ;
  59. ;
  60. ; ■ Functions used :
  61. ;
  62. ;    10      +
  63. ;    1       ==
  64. ;    1       Mask_Ascii()
  65. ;    2       PPEPath()
  66. ;
  67. ;------------------------------------------------------------------------------
  68. ;
  69. ; Analysis flags : No flag
  70. ;
  71. ;------------------------------------------------------------------------------
  72. ;
  73. ; Postprocessing report
  74. ;
  75. ;    0       For/Next
  76. ;    0       While/EndWhile
  77. ;    0       If/Then or If/Then/Else
  78. ;    0       Select Case
  79. ;
  80. ;------------------------------------------------------------------------------
  81. ;                 AEGiS Corp - Break the routines, code against the machines!
  82. ;------------------------------------------------------------------------------
  83.