home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PCBOARD / CBOX27.ZIP / OPAGE.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1994-03-04  |  855b  |  93 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 Chr(13) + "C" + Chr(13)
  31.     Endif
  32.     If (INTEGER001 == 121) Then
  33.         KbdStuff Chr(13) + "C" + Chr(13) + YesChar() + Chr(13)
  34.     Endif
  35.     If (((INTEGER001 <> 89) && (INTEGER001 <> 121)) && (INTEGER001 <> 80)) Then
  36.         PageOff
  37.     Endif
  38.     Cls
  39.     End
  40.  
  41. ;------------------------------------------------------------------------------
  42. ;
  43. ; Usage report (before postprocessing)
  44. ;
  45. ; ■ Statements used :
  46. ;
  47. ;    1       End
  48. ;    1       Cls
  49. ;    3       Goto 
  50. ;    1       Let 
  51. ;    3       If 
  52. ;    1       Shell 
  53. ;    2       KbdStuff 
  54. ;    1       WrUSys
  55. ;    1       RdUSys
  56. ;    1       PageOn
  57. ;    1       PageOff
  58. ;
  59. ;
  60. ; ■ Functions used :
  61. ;
  62. ;    7       +
  63. ;    2       ==
  64. ;    3       <>
  65. ;    3       !
  66. ;    2       &&
  67. ;    5       Chr()
  68. ;    1       YesChar()
  69. ;    1       PPEPath()
  70. ;
  71. ;------------------------------------------------------------------------------
  72. ;
  73. ; Analysis flags : S
  74. ;
  75. ; S - Shell to DOS ■ 5
  76. ;     This may be normal if the PPE need to execute an external command,
  77. ;     but may be actually anything... nasty (formating HD, rebooting,...)
  78. ;     or usefull (sorting, maintenance,...). Check!
  79. ;     ■ Search for : SHELL
  80. ;
  81. ;------------------------------------------------------------------------------
  82. ;
  83. ; Postprocessing report
  84. ;
  85. ;    0       For/Next
  86. ;    0       While/EndWhile
  87. ;    3       If/Then or If/Then/Else
  88. ;    0       Select Case
  89. ;
  90. ;------------------------------------------------------------------------------
  91. ;                 AEGiS Corp - Break the routines, code against the machines!
  92. ;------------------------------------------------------------------------------
  93.