home *** CD-ROM | disk | FTP | other *** search
/ Bila Vrana / BILA_VRANA.iso / 019A / PCBDEMO.ZIP / PCBDISK1.EXE / RIP / PPE / CHAT.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-01-01  |  883b  |  82 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.     Boolean  BOOLEAN001
  20.     String   STRING001
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     STRING001 = TokenStr()
  25.     STRING001 = Left(STRING001, 1)
  26.     STRING001 = Upper(STRING001)
  27.     If (Len(STRING001) <> 0) Then
  28.         If (STRING001 == "A") BOOLEAN001 = 1
  29.         If (STRING001 == "U") BOOLEAN001 = 0
  30.         End
  31.     Endif
  32.     If (BOOLEAN001) Then
  33.         DispFile PPEPath() + "CHATA", 4 + 1
  34.     Else
  35.         DispFile PPEPath() + "CHATU", 4 + 1
  36.     Endif
  37.     Delay 27
  38.     End
  39.  
  40. ;------------------------------------------------------------------------------
  41. ;
  42. ; Usage report (before postprocessing)
  43. ;
  44. ; ■ Statements used :
  45. ;
  46. ;    2       End
  47. ;    3       Goto 
  48. ;    5       Let 
  49. ;    4       If 
  50. ;    2       DispFile 
  51. ;    1       Delay 
  52. ;
  53. ;
  54. ; ■ Functions used :
  55. ;
  56. ;    4       +
  57. ;    2       ==
  58. ;    1       <>
  59. ;    2       !
  60. ;    1       Len(
  61. ;    1       Upper()
  62. ;    1       Left()
  63. ;    2       PPEPath()
  64. ;    1       TokenStr()
  65. ;
  66. ;------------------------------------------------------------------------------
  67. ;
  68. ; Analysis flags : No flag
  69. ;
  70. ;------------------------------------------------------------------------------
  71. ;
  72. ; Postprocessing report
  73. ;
  74. ;    0       For/Next
  75. ;    0       While/EndWhile
  76. ;    2       If/Then or If/Then/Else
  77. ;    0       Select Case
  78. ;
  79. ;------------------------------------------------------------------------------
  80. ;                 AEGiS Corp - Break the routines, code against the machines!
  81. ;------------------------------------------------------------------------------
  82.