home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / DOS / Comunic / LIGHTDOC.ZIP / LIGHT-LR.PPE (.txt) < prev    next >
Encoding:
PCBoard Programming Language Executable  |  1996-08-28  |  1.0 KB  |  92 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 3.O1 (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.  
  21. ;------------------------------------------------------------------------------
  22.  
  23.     Cls
  24.     Print "@POFF@"
  25.     :LABEL001
  26.     AnsiPos 1, 10
  27.     Print "@X0FDO YOU WANT iT [@X4FYES@X0F] [NO]"
  28.     :LABEL002
  29.     STRING001 = Inkey()
  30.     If (STRING001 == "RIGHT") Goto LABEL003
  31.     If (STRING001 == Chr(13)) Goto LABEL005
  32.     Goto LABEL002
  33.     :LABEL003
  34.     AnsiPos 1, 10
  35.     Print "@X0FDO YOU WANT iT [YES] [@X4FNO@X0F]"
  36.     :LABEL004
  37.     STRING001 = Inkey()
  38.     If (STRING001 == "LEFT") Goto LABEL001
  39.     If (STRING001 == Chr(13)) Goto LABEL006
  40.     Goto LABEL004
  41.     :LABEL005
  42.     Cls
  43.     PrintLn "YOU'VE CHOOSEN YES!"
  44.     Wait
  45.     Goto LABEL007
  46.     :LABEL006
  47.     Cls
  48.     PrintLn "YOU'VE CHOOSEN NO!"
  49.     Wait
  50.     :LABEL007
  51.     End
  52.  
  53. ;------------------------------------------------------------------------------
  54. ;
  55. ; Usage report (before postprocessing)
  56. ;
  57. ; ■ Statements used :
  58. ;
  59. ;    1       End
  60. ;    3       Cls
  61. ;    2       Wait
  62. ;    8       Goto 
  63. ;    2       Let 
  64. ;    3       Print 
  65. ;    2       PrintLn 
  66. ;    4       If 
  67. ;    2       AnsiPos 
  68. ;
  69. ;
  70. ; ■ Functions used :
  71. ;
  72. ;    4       ==
  73. ;    2       Chr()
  74. ;    2       Inkey()
  75. ;
  76. ;------------------------------------------------------------------------------
  77. ;
  78. ; Analysis flags : No flag
  79. ;
  80. ;------------------------------------------------------------------------------
  81. ;
  82. ; Postprocessing report
  83. ;
  84. ;    0       For/Next
  85. ;    0       While/EndWhile
  86. ;    0       If/Then or If/Then/Else
  87. ;    0       Select Case
  88. ;
  89. ;------------------------------------------------------------------------------
  90. ;                 AEGiS Corp - Break the routines, code against the machines!
  91. ;------------------------------------------------------------------------------
  92.