home *** CD-ROM | disk | FTP | other *** search
/ Bila Vrana / BILA_VRANA.iso / 019A / PCBDEMO.ZIP / PCBDISK1.EXE / RIP / PPE / ALIAS.PPE (.txt) next >
PCBoard Programming Language Executable  |  1993-01-01  |  638b  |  101 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.     String   STRING001
  20.  
  21. ;------------------------------------------------------------------------------
  22.  
  23.     STRING001 = TokenStr()
  24.     STRING001 = Left(STRING001, 1)
  25.     STRING001 = Upper(STRING001)
  26.     If (Len(STRING001) == 0) Then
  27.         If (STRING001 == "ON") Alias 1
  28.         If (STRING001 == "OF") Alias 0
  29.         End
  30.     Endif
  31.     If (Alias()) Then
  32.         Alias 0
  33.         If ((GrafMode() == "R") && Exist(PPEPath() + "ALIASON.RIP")) Then
  34.             Cls
  35.             DispFile PPEPath() + "ALIASON.RIP", 0
  36.             Delay 27
  37.         Else
  38.             PrintLn 
  39.             PrintLn "@X0AYou are now using your real name."
  40.         Endif
  41.     Else
  42.         Alias 1
  43.         If ((GrafMode() == "R") && Exist(PPEPath() + "ALIASOF.RIP")) Then
  44.             Cls
  45.             DispFile PPEPath() + "ALIASOF.RIP", 0
  46.             Delay 27
  47.         Else
  48.             PrintLn 
  49.             PrintLn "@X0AYou are now using your alias."
  50.         Endif
  51.     Endif
  52.  
  53. ;------------------------------------------------------------------------------
  54. ;
  55. ; Usage report (before postprocessing)
  56. ;
  57. ; ■ Statements used :
  58. ;
  59. ;    1       End
  60. ;    2       Cls
  61. ;    7       Goto 
  62. ;    3       Let 
  63. ;    4       PrintLn 
  64. ;    6       If 
  65. ;    2       DispFile 
  66. ;    2       Delay 
  67. ;    4       Alias 
  68. ;
  69. ;
  70. ; ■ Functions used :
  71. ;
  72. ;    4       +
  73. ;    5       ==
  74. ;    4       !
  75. ;    2       &&
  76. ;    1       Len(
  77. ;    1       Upper()
  78. ;    1       Left()
  79. ;    4       PPEPath()
  80. ;    2       Exist()
  81. ;    1       TokenStr()
  82. ;    2       GrafMode()
  83. ;    1       Alias()
  84. ;
  85. ;------------------------------------------------------------------------------
  86. ;
  87. ; Analysis flags : No flag
  88. ;
  89. ;------------------------------------------------------------------------------
  90. ;
  91. ; Postprocessing report
  92. ;
  93. ;    0       For/Next
  94. ;    0       While/EndWhile
  95. ;    4       If/Then or If/Then/Else
  96. ;    0       Select Case
  97. ;
  98. ;------------------------------------------------------------------------------
  99. ;                 AEGiS Corp - Break the routines, code against the machines!
  100. ;------------------------------------------------------------------------------
  101.