home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PCBOARD / EXCEED10.ZIP / EXCEED.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1994-03-26  |  2KB  |  110 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.     Log "Time Limit Exceeded.  PCBExceed [PPE] Entered.", 0
  25.     SPrintLn "─────────────────────────────────────────────────────────────────"
  26.     SPrintLn "                 PCBExceed Version 1.0 Entered!"
  27.     SPrintLn "─────────────────────────────────────────────────────────────────"
  28.     SPrintLn 
  29.     DispFile PPEPath() + "exceed", 2
  30.     PrintLn 
  31.     PrintLn 
  32.     PrintLn "  @X0CBefore being logged off... @X0Dwe'd like you to answer one question for@X07"
  33.     PrintLn "  @X0Dus.@X07"
  34.     PrintLn 
  35.     SPrintLn " Getting Question Information from EXCEED.CFG..."
  36.     SPrintLn 
  37.     FOpen 1, PPEPath() + "exceed.cfg", 2, 0
  38.     FGet 1, STRING001
  39.     FGet 1, STRING002
  40.     FClose 1
  41.     InputYN STRING001, STRING002, 14
  42.     PrintLn 
  43.     PrintLn 
  44.     SPrintLn " Recording Response to EXCEED.RES and log..."
  45.     FAppend 1, PPEPath() + "exceed.res", 2, 0
  46.     FPutLn 1, "Question: " + STRING001 + "?  Answer: " + STRING002
  47.     FClose 1
  48.     PrintLn "@X0BThanks for taking the time to answer the question.  You will now be@X07"
  49.     PrintLn "@X0Blogged off due to the fact that you have exceeded your time limit.@X07"
  50.     PrintLn 
  51.     PrintLn "@X0FMinutes Used: @TIMEUSED@@X07"
  52.     PrintLn 
  53.     PrintLn "@X0EThanks for calling, @X0A@USER@@X0E!@X07"
  54.     Log "@USER@ responded to the PCBExceed Question.", 0
  55.     Log "Question:", 0
  56.     Log STRING001 + "?", 0
  57.     Log "Answer: " + STRING002, 0
  58.     Log "PCBExceed [PPE] Completed.", 0
  59.     SPrintLn 
  60.     SPrintLn " PCBExceed Completed.  Freeware from DynaSOFT."
  61.     Hangup
  62.     End
  63.  
  64. ;------------------------------------------------------------------------------
  65. ;
  66. ; Usage report (before postprocessing)
  67. ;
  68. ; ■ Statements used :
  69. ;
  70. ;    1       End
  71. ;    13      PrintLn 
  72. ;    1       DispFile 
  73. ;    1       FOpen 
  74. ;    1       FAppend 
  75. ;    2       FClose 
  76. ;    2       FGet 
  77. ;    1       FPutLn 
  78. ;    1       Hangup
  79. ;    6       Log 
  80. ;    1       InputYN 
  81. ;    9       SPrintLn 
  82. ;
  83. ;
  84. ; ■ Functions used :
  85. ;
  86. ;    8       +
  87. ;    3       PPEPath()
  88. ;
  89. ;------------------------------------------------------------------------------
  90. ;
  91. ; Analysis flags : B
  92. ;
  93. ; B - Brute hangup ■ 1
  94. ;     Program hangup without notification. This may be a good way to
  95. ;     disconnect a user, but if used randomly, may be very nasty
  96. ;     ■ Search for : HANGUP, DTROFF
  97. ;
  98. ;------------------------------------------------------------------------------
  99. ;
  100. ; Postprocessing report
  101. ;
  102. ;    0       For/Next
  103. ;    0       While/EndWhile
  104. ;    0       If/Then or If/Then/Else
  105. ;    0       Select Case
  106. ;
  107. ;------------------------------------------------------------------------------
  108. ;                 AEGiS Corp - Break the routines, code against the machines!
  109. ;------------------------------------------------------------------------------
  110.