home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / CBOX24.ZIP / SYSPAGE.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-08-20  |  739b  |  89 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 1.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     String   STRING001
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     STRING001 = PPEPath()
  25.     PageOn
  26.     WrUSys
  27.     Shell 0, INTEGER001, STRING001 + "CHATBOX.EXE", "CHATBOX.CNF /PPE"
  28.     RdUSys
  29.     If (INTEGER001 == 89) Then
  30.         KbdStuff "C" + Chr(13)
  31.     Endif
  32.     If ((INTEGER001 <> 89) && (INTEGER001 <> 80)) Then
  33.         PageOff
  34.     Endif
  35.     Cls
  36.     End
  37.  
  38. ;------------------------------------------------------------------------------
  39. ;
  40. ; Usage report (before postprocessing)
  41. ;
  42. ; ■ Statements used :
  43. ;
  44. ;    1       End
  45. ;    1       Cls
  46. ;    2       Goto 
  47. ;    1       Let 
  48. ;    2       If 
  49. ;    1       Shell 
  50. ;    1       KbdStuff 
  51. ;    1       WrUSys
  52. ;    1       RdUSys
  53. ;    1       PageOn
  54. ;    1       PageOff
  55. ;
  56. ;
  57. ; ■ Functions used :
  58. ;
  59. ;    2       +
  60. ;    1       ==
  61. ;    2       <>
  62. ;    2       !
  63. ;    1       &&
  64. ;    1       Chr()
  65. ;    1       PPEPath()
  66. ;
  67. ;------------------------------------------------------------------------------
  68. ;
  69. ; Analysis flags : S
  70. ;
  71. ; S - Shell to DOS ■ 5
  72. ;     This may be normal if the PPE need to execute an external command,
  73. ;     but may be actually anything... nasty (formating HD, rebooting,...)
  74. ;     or usefull (sorting, maintenance,...). Check!
  75. ;     ■ Search for : SHELL
  76. ;
  77. ;------------------------------------------------------------------------------
  78. ;
  79. ; Postprocessing report
  80. ;
  81. ;    0       For/Next
  82. ;    0       While/EndWhile
  83. ;    2       If/Then or If/Then/Else
  84. ;    0       Select Case
  85. ;
  86. ;------------------------------------------------------------------------------
  87. ;                 AEGiS Corp - Break the routines, code against the machines!
  88. ;------------------------------------------------------------------------------
  89.