home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / TKGALORE.ZIP / TK-ALARM.ZIP / ALARM.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1996-05-16  |  928b  |  88 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 3.2O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     String   STRING001
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     FOpen 1, PPEPath() + "ALARM.LST", 0, 0
  25.     STRING001 = "."
  26.     While (STRING001 <> "") Do
  27.         FGet 1, STRING001
  28.         If (U_Name() == STRING001) Then
  29.             FClose 1
  30.             For INTEGER001 = 1 To 8
  31.                 Sound 700
  32.                 Delay 2
  33.                 Sound 0
  34.                 Delay 2
  35.             Next
  36.             End
  37.         Endif
  38.     EndWhile
  39.     FClose 1
  40.  
  41. ;------------------------------------------------------------------------------
  42. ;
  43. ; Usage report (before postprocessing)
  44. ;
  45. ; ■ Statements used :
  46. ;
  47. ;    1       End
  48. ;    5       Goto 
  49. ;    3       Let 
  50. ;    3       If 
  51. ;    1       FOpen 
  52. ;    2       FClose 
  53. ;    1       FGet 
  54. ;    2       Delay 
  55. ;    2       Sound 
  56. ;
  57. ;
  58. ; ■ Functions used :
  59. ;
  60. ;    2       +
  61. ;    1       ==
  62. ;    1       <>
  63. ;    1       <
  64. ;    1       <=
  65. ;    2       >=
  66. ;    3       !
  67. ;    2       &&
  68. ;    1       ||
  69. ;    1       U_Name()
  70. ;    1       PPEPath()
  71. ;
  72. ;------------------------------------------------------------------------------
  73. ;
  74. ; Analysis flags : No flag
  75. ;
  76. ;------------------------------------------------------------------------------
  77. ;
  78. ; Postprocessing report
  79. ;
  80. ;    1       For/Next
  81. ;    1       While/EndWhile
  82. ;    1       If/Then or If/Then/Else
  83. ;    0       Select Case
  84. ;
  85. ;------------------------------------------------------------------------------
  86. ;                 AEGiS Corp - Break the routines, code against the machines!
  87. ;------------------------------------------------------------------------------
  88.