home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / MT_GRF11.ZIP / GRAF-N.PPE (.txt) < prev    next >
Encoding:
PCBoard Programming Language Executable  |  1993-07-09  |  1.3 KB  |  91 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.     String   STRING001
  20.     String   STRING002
  21.     String   STRING003
  22.     String   STRING004
  23.     String   STRING005
  24.     String   STRING006
  25.     String   STRING007
  26.  
  27. ;------------------------------------------------------------------------------
  28.  
  29.     STRING002 = TokenStr()
  30.     InputStr "@X0EDo you want graphics (Enter)=no", STRING001, 7, 6, "QSR", 2 + 256 + 16 + 8 + 16384
  31.     If ((STRING001 == "") && !TRUE) STRING001 = NoChar()
  32.     If (InStr(STRING001, "NS")) Then
  33.         STRING003 = "NS"
  34.         STRING001 = Left(STRING001, InStr(STRING001, "NS") - 1) + Right(STRING001, Len(STRING001) - InStr(STRING001, "NS") + 1)
  35.     Endif
  36.     If (InStr(STRING001, YesChar())) STRING005 = YesChar() + ";"
  37.     If (InStr(STRING001, NoChar())) STRING007 = NoChar() + ";"
  38.     If (InStr(STRING001, "Q")) STRING004 = ""
  39.     If (InStr(STRING001, "R")) STRING006 = "R;"
  40.     KbdStuff STRING006 + STRING005 + STRING007 + STRING004 + STRING003 + Chr(13)
  41.     Newlines 1
  42.     End
  43.  
  44. ;------------------------------------------------------------------------------
  45. ;
  46. ; Usage report (before postprocessing)
  47. ;
  48. ; ■ Statements used :
  49. ;
  50. ;    1       End
  51. ;    1       Goto 
  52. ;    8       Let 
  53. ;    6       If 
  54. ;    1       InputStr 
  55. ;    1       Newlines 
  56. ;    1       KbdStuff 
  57. ;
  58. ;
  59. ; ■ Functions used :
  60. ;
  61. ;    13      +
  62. ;    2       -
  63. ;    1       ==
  64. ;    2       !
  65. ;    1       &&
  66. ;    1       Len(
  67. ;    1       Left()
  68. ;    1       Right()
  69. ;    1       Chr()
  70. ;    7       InStr()
  71. ;    3       NoChar()
  72. ;    2       YesChar()
  73. ;    1       TokenStr()
  74. ;
  75. ;------------------------------------------------------------------------------
  76. ;
  77. ; Analysis flags : No flag
  78. ;
  79. ;------------------------------------------------------------------------------
  80. ;
  81. ; Postprocessing report
  82. ;
  83. ;    0       For/Next
  84. ;    0       While/EndWhile
  85. ;    1       If/Then or If/Then/Else
  86. ;    0       Select Case
  87. ;
  88. ;------------------------------------------------------------------------------
  89. ;                 AEGiS Corp - Break the routines, code against the machines!
  90. ;------------------------------------------------------------------------------
  91.