home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PCBOARD / PEGAND2Z.ZIP / 396.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1994-03-25  |  916b  |  85 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 2.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     String   STRING001
  21.     String   STRING002
  22.     String   STRING003
  23.  
  24. ;------------------------------------------------------------------------------
  25.  
  26.     STRING002 = ReadLine(PCBDat(), 28) + "pegtmp." + String(PcbNode())
  27.     STRING003 = ReadLine(PCBDat(), 28) + "pegtime." + String(PcbNode())
  28.     INTEGER001 = Time()
  29.     FCreate 1, STRING002, 1, 0
  30.     FPutLn 1, INTEGER001
  31.     FClose 1
  32.     OpenCap STRING002, STRING001
  33.     Print "@X0E(@X0C@TIMELEFT@@X0E min. left) @INCONF@Command, @FIRST@"
  34.     CloseCap 
  35.     Rename STRING002, STRING003
  36.  
  37. ;------------------------------------------------------------------------------
  38. ;
  39. ; Usage report (before postprocessing)
  40. ;
  41. ; ■ Statements used :
  42. ;
  43. ;    3       Let 
  44. ;    1       Print 
  45. ;    1       FCreate 
  46. ;    1       FClose 
  47. ;    1       FPutLn 
  48. ;    1       OpenCap 
  49. ;    1       CloseCap 
  50. ;    1       Rename 
  51. ;
  52. ;
  53. ; ■ Functions used :
  54. ;
  55. ;    4       +
  56. ;    1       Time()
  57. ;    2       String()
  58. ;    2       PCBDat()
  59. ;    2       PcbNode()
  60. ;    2       ReadLine()
  61. ;
  62. ;------------------------------------------------------------------------------
  63. ;
  64. ; Analysis flags : d
  65. ;
  66. ; d - Access PCBOARD.DAT ■ 2
  67. ;     Program gets the full pathname to PCBOARD.DAT, this may be usefull
  68. ;     for many PPE so they can find various informations on the system
  69. ;     (system paths, max number of lines in messages, ...) but it may also
  70. ;     be a way to gather vital informations.
  71. ;     ■ Search for : PCBDAT()
  72. ;
  73. ;------------------------------------------------------------------------------
  74. ;
  75. ; Postprocessing report
  76. ;
  77. ;    0       For/Next
  78. ;    0       While/EndWhile
  79. ;    0       If/Then or If/Then/Else
  80. ;    0       Select Case
  81. ;
  82. ;------------------------------------------------------------------------------
  83. ;                 AEGiS Corp - Break the routines, code against the machines!
  84. ;------------------------------------------------------------------------------
  85.