home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / SL_UTL10.ZIP / SL-LFC.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-08-28  |  3KB  |  168 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 1.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     String   STRING002
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     If (Exist(PPEPath() + "SL-LFC.CNF")) Then
  25.         FOpen 1, PPEPath() + "SL-LFC.CNF", 0, 0
  26.     Else
  27.         PrintLn "@X0CConfig File Missing! Please Notify Sysop!"
  28.         Goto LABEL002
  29.     Endif
  30.     FGet 1, STRING001
  31.     FClose 1
  32.     If (Exist(STRING001)) Goto LABEL001
  33.     FCreate 1, STRING001, 2, 0
  34.     FPut 1, "@X0FAs of "
  35.     Select Case (Dow(Date()))
  36.         Case 0
  37.             FPut 1, "Sunday"
  38.         Case 1
  39.             FPut 1, "Monday"
  40.         Case 2
  41.             FPut 1, "Tuesday"
  42.         Case 3
  43.             FPut 1, "Wednesday"
  44.         Case 4
  45.             FPut 1, "Thrusday"
  46.         Case 5
  47.             FPut 1, "Friday"
  48.         Case 6
  49.             FPut 1, "Saturday"
  50.     End Select
  51.     FPut 1, ", "
  52.     Select Case (Month(Date()))
  53.         Case 1
  54.             FPut 1, "January"
  55.         Case 2
  56.             FPut 1, "February"
  57.         Case 3
  58.             FPut 1, "March"
  59.         Case 4
  60.             FPut 1, "April"
  61.         Case 5
  62.             FPut 1, "May"
  63.         Case 6
  64.             FPut 1, "June"
  65.         Case 7
  66.             FPut 1, "July"
  67.         Case 8
  68.             FPut 1, "August"
  69.         Case 9
  70.             FPut 1, "September"
  71.         Case 10
  72.             FPut 1, "October"
  73.         Case 11
  74.             FPut 1, "November"
  75.         Case 12
  76.             FPut 1, "December"
  77.     End Select
  78.     FPutLn 1, " ", Day(Date()), ", ", Year(Date())
  79.     FPutLn 1
  80.     FPutLn 1, "@X0FCaller  Name                        City                        Bps    Node"
  81.     FPutLn 1, "@X0F────────────@X07──@X0F────@X07────────@X08─@X07───────────@X08─────────@X07─@X08───────────────────────────────"
  82.     FClose 1
  83.     :LABEL001
  84.     GetUser
  85.     STRING002 = Upper(U_City)
  86.     FAppend 1, STRING001, 2, 0
  87.     FPut 1, "@X07"
  88.     FPutPad 1, CallNum(), 6
  89.     FPut 1, "@X0B  "
  90.     FPutPad 1, Left(Upper(U_Name()), 1) + Lower(Right(Upper(U_Name()), Len(Upper(U_Name())) - 1)), -28
  91.     FPut 1, "@X09"
  92.     FPutPad 1, Left(STRING002, 1) + Lower(Right(STRING002, Len(STRING002) - 1)), -28
  93.     FPut 1, "@X05"
  94.     FPutPad 1, Carrier(), -5
  95.     FPut 1, "@X0E  "
  96.     FPutPad 1, PcbNode(), -2
  97.     FPut 1, "@X07"
  98.     FPut 1, Chr(13)
  99.     FClose 1
  100.     :LABEL002
  101.     PrintLn 
  102.     PrintLn "@X0EThanks for calling, @FIRST@!@X07"
  103.     End
  104.  
  105. ;------------------------------------------------------------------------------
  106. ;
  107. ; Usage report (before postprocessing)
  108. ;
  109. ; ■ Statements used :
  110. ;
  111. ;    1       End
  112. ;    40      Goto 
  113. ;    1       Let 
  114. ;    3       PrintLn 
  115. ;    21      If 
  116. ;    1       FCreate 
  117. ;    1       FOpen 
  118. ;    1       FAppend 
  119. ;    3       FClose 
  120. ;    1       FGet 
  121. ;    28      FPut 
  122. ;    4       FPutLn 
  123. ;    5       FPutPad 
  124. ;    1       GetUser
  125. ;
  126. ;
  127. ; ■ Functions used :
  128. ;
  129. ;    4       -
  130. ;    4       +
  131. ;    2       -
  132. ;    19      ==
  133. ;    20      !
  134. ;    2       Len(
  135. ;    2       Lower()
  136. ;    4       Upper()
  137. ;    2       Left()
  138. ;    2       Right()
  139. ;    1       Chr()
  140. ;    21      Date()
  141. ;    3       U_Name()
  142. ;    1       Year()
  143. ;    12      Month()
  144. ;    1       Day()
  145. ;    7       Dow()
  146. ;    2       PPEPath()
  147. ;    1       PcbNode()
  148. ;    2       Exist()
  149. ;    1       Carrier()
  150. ;    1       CallNum()
  151. ;
  152. ;------------------------------------------------------------------------------
  153. ;
  154. ; Analysis flags : No flag
  155. ;
  156. ;------------------------------------------------------------------------------
  157. ;
  158. ; Postprocessing report
  159. ;
  160. ;    0       For/Next
  161. ;    0       While/EndWhile
  162. ;    1       If/Then or If/Then/Else
  163. ;    2       Select Case
  164. ;
  165. ;------------------------------------------------------------------------------
  166. ;                 AEGiS Corp - Break the routines, code against the machines!
  167. ;------------------------------------------------------------------------------
  168.