home *** CD-ROM | disk | FTP | other *** search
/ Groovy Bytes: Behind the Moon / groovybytes.iso / GROOVY / PPE / ALF / ALF_NUP1.ZIP / NUP.PPE (.txt) < prev   
Encoding:
PCBoard Programming Language Executable  |  1994-06-01  |  1.7 KB  |  112 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.     String   STRING002
  22.     String   STRING003
  23.     String   STRING004
  24.  
  25. ;------------------------------------------------------------------------------
  26.  
  27.     INTEGER001 = 0
  28.     :LABEL001
  29.     INTEGER001 = INTEGER001 + 1
  30.     Cls
  31.     STRING001 = ReadLine(PPEPath() + "NUP.CNF", 2)
  32.     STRING004 = ReadLine(PPEPath() + "NUP.CNF", 3)
  33.     STRING003 = ReadLine(PPEPath() + "NUP.CNF", 4)
  34.     DispFile PPEPath() + "NUP", 1
  35.     InputStr STRING004 + "@X08", STRING002, 14, 15, Mask_Ascii(), 2 + 128 + 8 + 256
  36.     If (STRING002 == STRING001) Then
  37.         PrintLn "@X04Correct!"
  38.         PrintLn "@X08NUP v2.0 [6/01/94] Coded Jim Jones [@X03Alf@X08]"
  39.         PrintLn "@X08Distributed By [@X03Alf@X08]"
  40.         PrintLn "@X08Registered To : @X04" + STRING003
  41.         PrintLn ""
  42.         PrintLn "@MORE@"
  43.         Goto LABEL002
  44.     Else
  45.         Select Case (INTEGER001)
  46.             Case 1
  47.                 PrintLn "@X04Wrong, Try Again"
  48.                 PrintLn "@MORE@"
  49.                 Goto LABEL001
  50.             Case 2
  51.                 PrintLn "@X04Wrong, Try One More Time"
  52.                 PrintLn "@MORE@"
  53.                 Goto LABEL001
  54.             Case 3
  55.                 PrintLn "@X04WRONG!!!, @X07 Call Back When You Get A Life!"
  56.                 PrintLn "@X08NUP v1.0 [5/16/94] Coded Jim Jones [@X03Alf@X08]"
  57.                 PrintLn "@X08Distributed By [@X03Alf@X08]"
  58.                 PrintLn "@X08Registered To : @X04" + STRING003
  59.                 Hangup
  60.             Endif
  61.     End Select
  62.     :LABEL002
  63.     End
  64.  
  65. ;------------------------------------------------------------------------------
  66. ;
  67. ; Usage report (before postprocessing)
  68. ;
  69. ; ■ Statements used :
  70. ;
  71. ;    1       End
  72. ;    1       Cls
  73. ;    11      Goto 
  74. ;    5       Let 
  75. ;    14      PrintLn 
  76. ;    4       If 
  77. ;    1       DispFile 
  78. ;    1       Hangup
  79. ;    1       InputStr 
  80. ;
  81. ;
  82. ; ■ Functions used :
  83. ;
  84. ;    11      +
  85. ;    4       ==
  86. ;    4       !
  87. ;    1       Mask_Ascii()
  88. ;    4       PPEPath()
  89. ;    3       ReadLine()
  90. ;
  91. ;------------------------------------------------------------------------------
  92. ;
  93. ; Analysis flags : B
  94. ;
  95. ; B - Brute hangup ■ 1
  96. ;     Program hangup without notification. This may be a good way to
  97. ;     disconnect a user, but if used randomly, may be very nasty
  98. ;     ■ Search for : HANGUP, DTROFF
  99. ;
  100. ;------------------------------------------------------------------------------
  101. ;
  102. ; Postprocessing report
  103. ;
  104. ;    0       For/Next
  105. ;    0       While/EndWhile
  106. ;    1       If/Then or If/Then/Else
  107. ;    1       Select Case
  108. ;
  109. ;------------------------------------------------------------------------------
  110. ;                 AEGiS Corp - Break the routines, code against the machines!
  111. ;------------------------------------------------------------------------------
  112.