home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / JOINPWA.ZIP / JOIN.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-05-25  |  1KB  |  76 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.     String   STRING003
  22.  
  23. ;------------------------------------------------------------------------------
  24.  
  25.     :LABEL001
  26.     If (Exist(PPEPath() + "NETCNFN\NCNFN")) DispFile PPEPath() + "NETCNFN\NCNFN", 4 + 2 + 1
  27.     InputStr "Join what Network #", STRING001, 10, 2, "1234567890", 4 + 128 + 32
  28.     If (STRING001 == "") End
  29.     If (Exist(PPEPath() + "NET\" + STRING001 + "NET")) DispFile PPEPath() + "NET\" + STRING001 + "NET", 4 + 2 + 1
  30.     InputStr "Join what Conference # (R=Relist Networks) ", STRING002, 10, 5, "1234567890Rr", 4 + 128 + 32
  31.     If (STRING002 == "") Goto LABEL001
  32.     If (STRING002 == "R") Goto LABEL001
  33.     If (STRING002 == "r") Goto LABEL001
  34.     STRING003 = "J " + STRING002
  35.     KbdStuff STRING003
  36.     End
  37.  
  38. ;------------------------------------------------------------------------------
  39. ;
  40. ; Usage report (before postprocessing)
  41. ;
  42. ; ■ Statements used :
  43. ;
  44. ;    2       End
  45. ;    3       Goto 
  46. ;    1       Let 
  47. ;    6       If 
  48. ;    2       DispFile 
  49. ;    2       InputStr 
  50. ;    1       KbdStuff 
  51. ;
  52. ;
  53. ; ■ Functions used :
  54. ;
  55. ;    17      +
  56. ;    4       ==
  57. ;    4       PPEPath()
  58. ;    2       Exist()
  59. ;
  60. ;------------------------------------------------------------------------------
  61. ;
  62. ; Analysis flags : No flag
  63. ;
  64. ;------------------------------------------------------------------------------
  65. ;
  66. ; Postprocessing report
  67. ;
  68. ;    0       For/Next
  69. ;    0       While/EndWhile
  70. ;    0       If/Then or If/Then/Else
  71. ;    0       Select Case
  72. ;
  73. ;------------------------------------------------------------------------------
  74. ;                 AEGiS Corp - Break the routines, code against the machines!
  75. ;------------------------------------------------------------------------------
  76.