home *** CD-ROM | disk | FTP | other *** search
/ Bila Vrana / BILA_VRANA.iso / 019A / PCBDEMO.ZIP / PCBDISK1.EXE / RIP / PPE / MORE.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-01-01  |  620b  |  95 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.     String   STRING001
  20.     String   STRING002
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     STRING002 = "YNS"
  25.     Print "@X00"
  26.     Print Chr(2) + "|10$SAVEALL$|W0000000000"
  27.     StartDisp 1
  28.     FreshLine
  29.     DispFile PPEPath() + "MORE", 4 + 1
  30.     StartDisp 2
  31.     STRING001 = Upper(Inkey())
  32.     While (((STRING001 <> "Y") && (STRING001 <> "N")) && (STRING001 <> "S")) Do
  33.         Delay 2
  34.         STRING001 = Upper(Inkey())
  35.         If (!CDOn()) STRING001 = "N"
  36.     EndWhile
  37.     PrintLn 
  38.     Print "!|10$RESTOREALL$|#|#|#"
  39.     PrintLn "@XFF@"
  40.     If (STRING001 == "S") Then
  41.         KbdStuff "NS"
  42.     Else
  43.         KbdStuff STRING001
  44.     Endif
  45.     End
  46.  
  47. ;------------------------------------------------------------------------------
  48. ;
  49. ; Usage report (before postprocessing)
  50. ;
  51. ; ■ Statements used :
  52. ;
  53. ;    1       End
  54. ;    4       Goto 
  55. ;    4       Let 
  56. ;    3       Print 
  57. ;    2       PrintLn 
  58. ;    3       If 
  59. ;    1       DispFile 
  60. ;    2       StartDisp 
  61. ;    1       Delay 
  62. ;    2       KbdStuff 
  63. ;    1       FreshLine
  64. ;
  65. ;
  66. ; ■ Functions used :
  67. ;
  68. ;    3       +
  69. ;    1       ==
  70. ;    3       <>
  71. ;    3       !
  72. ;    2       &&
  73. ;    2       Upper()
  74. ;    1       Chr()
  75. ;    2       Inkey()
  76. ;    1       PPEPath()
  77. ;    1       CDOn()
  78. ;
  79. ;------------------------------------------------------------------------------
  80. ;
  81. ; Analysis flags : No flag
  82. ;
  83. ;------------------------------------------------------------------------------
  84. ;
  85. ; Postprocessing report
  86. ;
  87. ;    0       For/Next
  88. ;    1       While/EndWhile
  89. ;    1       If/Then or If/Then/Else
  90. ;    0       Select Case
  91. ;
  92. ;------------------------------------------------------------------------------
  93. ;                 AEGiS Corp - Break the routines, code against the machines!
  94. ;------------------------------------------------------------------------------
  95.