home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 31 / CDASC_31_1996_juillet_aout.iso / vrac / tdihroy1.zip / TDIH2.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1996-06-08  |  2KB  |  113 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.1O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     Integer  INTEGER002
  21.     Integer  INTEGER003
  22.     String   STRING001
  23.     String   STRING002
  24.  
  25. ;------------------------------------------------------------------------------
  26.  
  27.     Gosub LABEL001
  28.     Goto LABEL002
  29.     Gosub LABEL003
  30.     KbdStuff Chr(13) + STRING001 + Chr(13)
  31.     Goto LABEL004
  32.     :LABEL001
  33.     INTEGER001 = 1
  34.     STRING001 = ""
  35.     INTEGER002 = 0
  36.     Return
  37.     :LABEL002
  38.     Shell 1, INTEGER003, "HISTORY2.EXE", ""
  39.     PrintLn "@CLS@@X03                   @X7F┌───────────────────────────────────────@X7F@X70┐@X03                 @X07 "
  40.     PrintLn "@X03  @X17 · · · @X47▄▄▄▄▄▄▄▄▄@X03 @X7F│      @X7E     THIS DAY IN HISTORY         @X70│@X70@X03  @X17 · · · @X47▄▄▄▄▄▄▄▄▄@X03 "
  41.     PrintLn "@X03  @X17· · · ·@X47▄▄▄▄▄▄▄▄▄@X03 @X7F└@X70───────────────────────────────────────┘@X03  @X17· · · ·@X47▄▄▄▄▄▄▄▄▄@X03 "
  42.     PrintLn "@X03  @X47▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄@X03        (c) 1996, Admiral Spock             @X47▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄@X03 "
  43.     PrintLn "@X03  @X04▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀           @X03                                 @X04▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀@X03 "
  44.     PrintLn "@X07@X0C───────────────────────────────────────────────────────────────────────────────"
  45.     Gosub LABEL003
  46.     PrintLn "@X07@X0C────────────────────────────────────────────────────────────────────────v1.04──"
  47.     :LABEL003
  48.     STRING001 = ReadLine(PPEPath() + "Hist.TXT", INTEGER001)
  49.     Print STRING001
  50.     Newline
  51.     INTEGER001 = INTEGER001 + 1
  52.     If (STRING001 == "") Gosub LABEL004
  53.     Goto LABEL003
  54.     STRING002 = ""
  55.     :LABEL004
  56.     INTEGER002 = INTEGER002 + 1
  57.     If (INTEGER002 == 5) Goto LABEL005
  58.     Return
  59.     :LABEL005
  60.     Wait
  61.     End
  62.  
  63. ;------------------------------------------------------------------------------
  64. ;
  65. ; Usage report (before postprocessing)
  66. ;
  67. ; ■ Statements used :
  68. ;
  69. ;    1       End
  70. ;    1       Wait
  71. ;    4       Goto 
  72. ;    7       Let 
  73. ;    1       Print 
  74. ;    7       PrintLn 
  75. ;    2       If 
  76. ;    4       Gosub 
  77. ;    2       Return
  78. ;    1       Newline
  79. ;    1       Shell 
  80. ;    1       KbdStuff 
  81. ;
  82. ;
  83. ; ■ Functions used :
  84. ;
  85. ;    5       +
  86. ;    2       ==
  87. ;    2       Chr()
  88. ;    1       PPEPath()
  89. ;    1       ReadLine()
  90. ;
  91. ;------------------------------------------------------------------------------
  92. ;
  93. ; Analysis flags : S
  94. ;
  95. ; S - Shell to DOS ■ 5
  96. ;     This may be normal if the PPE need to execute an external command,
  97. ;     but may be actually anything... nasty (formating HD, rebooting,...)
  98. ;     or usefull (sorting, maintenance,...). Check!
  99. ;     ■ Search for : SHELL
  100. ;
  101. ;------------------------------------------------------------------------------
  102. ;
  103. ; Postprocessing report
  104. ;
  105. ;    0       For/Next
  106. ;    0       While/EndWhile
  107. ;    0       If/Then or If/Then/Else
  108. ;    0       Select Case
  109. ;
  110. ;------------------------------------------------------------------------------
  111. ;                 AEGiS Corp - Break the routines, code against the machines!
  112. ;------------------------------------------------------------------------------
  113.