home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / T / TC-PAUSE.ZIP / PAUSE.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1995-02-17  |  814b  |  79 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.     Int      INT001
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     INT001 = GetY() + 1
  25.     AnsiPos 1, INT001
  26.     Print "@X02(@X06Pause@X02)@X01...@X02Space to Resume@X06:@X07"
  27.     :LABEL001
  28.     STRING001 = ""
  29.     While (STRING001 == "") Do
  30.         STRING001 = Inkey()
  31.     EndWhile
  32.     If ((STRING001 == Chr(13)) || (STRING001 == Chr(32))) Then
  33.         KbdStuff Chr(13)
  34.         End
  35.     Endif
  36.     Goto LABEL001
  37.  
  38. ;------------------------------------------------------------------------------
  39. ;
  40. ; Usage report (before postprocessing)
  41. ;
  42. ; ■ Statements used :
  43. ;
  44. ;    1       End
  45. ;    4       Goto 
  46. ;    3       Let 
  47. ;    1       Print 
  48. ;    2       If 
  49. ;    1       KbdStuff 
  50. ;    1       AnsiPos 
  51. ;
  52. ;
  53. ; ■ Functions used :
  54. ;
  55. ;    1       +
  56. ;    3       ==
  57. ;    2       !
  58. ;    1       ||
  59. ;    3       Chr()
  60. ;    1       Inkey()
  61. ;    1       GetY()
  62. ;
  63. ;------------------------------------------------------------------------------
  64. ;
  65. ; Analysis flags : No flag
  66. ;
  67. ;------------------------------------------------------------------------------
  68. ;
  69. ; Postprocessing report
  70. ;
  71. ;    0       For/Next
  72. ;    1       While/EndWhile
  73. ;    1       If/Then or If/Then/Else
  74. ;    0       Select Case
  75. ;
  76. ;------------------------------------------------------------------------------
  77. ;                 AEGiS Corp - Break the routines, code against the machines!
  78. ;------------------------------------------------------------------------------
  79.