home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PCBOARD / MTH_NAV1.ZIP / WHO.PPE (.txt) < prev   
PCBoard Programming Language Executable  |  1994-02-19  |  2KB  |  99 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.     Integer  INTEGER001
  20.     String   STRING001
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     INTEGER001 = 1
  25.     For INTEGER001 = 1 To 4
  26.         RdUNet INTEGER001
  27.         PrintLn "@X08───────────────────────────────────────────────────────────────────────────────"
  28.         Print "@X08││ [@X07Node@X08] │ [ @X03"
  29.         If (UN_Name() == "") Print "IDLE NODE"
  30.         If (UN_Name() <> "") Print UN_Name()
  31.         Print "@X08 ].."
  32.         PrintLn "@POS:42@@X08│                                   ││"
  33.         Print "││ [@X07-0"
  34.         Print INTEGER001
  35.         Print "-@X08] │ [ @X07"
  36.         If (UN_City() == "") Print "WAITING FOR CALLER..."
  37.         If (UN_City() <> "") Print UN_City()
  38.         Print "@POS:40@@X08] │ @X05"
  39.         STRING001 = UN_Stat()
  40.         If (STRING001 == "A") Print "User is Somewhere on the Board..."
  41.         If (STRING001 == "") Print "Lost Somewhere in Time..........."
  42.         If (STRING001 == "U") Print "User is Running a [PPE] or DOOR.."
  43.         If (STRING001 == "E") Print "Sending Mail to ..."
  44.         If (STRING001 == "T") Print "User is Transferring Warez......."
  45.         If (STRING001 == "F") Print "User is Viewing a File..........."
  46.         PrintLn "@POS:78@@X08││"
  47.         PrintLn "───────────────────────────────────────────────────────────────────────────────"
  48.     Next
  49.     Wait
  50.     Return
  51.  
  52. ;------------------------------------------------------------------------------
  53. ;
  54. ; Usage report (before postprocessing)
  55. ;
  56. ; ■ Statements used :
  57. ;
  58. ;    1       Wait
  59. ;    2       Goto 
  60. ;    4       Let 
  61. ;    16      Print 
  62. ;    4       PrintLn 
  63. ;    11      If 
  64. ;    1       Return
  65. ;    1       RdUNet 
  66. ;
  67. ;
  68. ; ■ Functions used :
  69. ;
  70. ;    1       +
  71. ;    8       ==
  72. ;    2       <>
  73. ;    1       <
  74. ;    1       <=
  75. ;    2       >=
  76. ;    1       !
  77. ;    2       &&
  78. ;    1       ||
  79. ;    1       UN_Stat()
  80. ;    3       UN_Name()
  81. ;    3       UN_City()
  82. ;
  83. ;------------------------------------------------------------------------------
  84. ;
  85. ; Analysis flags : No flag
  86. ;
  87. ;------------------------------------------------------------------------------
  88. ;
  89. ; Postprocessing report
  90. ;
  91. ;    1       For/Next
  92. ;    0       While/EndWhile
  93. ;    0       If/Then or If/Then/Else
  94. ;    0       Select Case
  95. ;
  96. ;------------------------------------------------------------------------------
  97. ;                 AEGiS Corp - Break the routines, code against the machines!
  98. ;------------------------------------------------------------------------------
  99.