[offtopic="Read at your own risk"]

Quote Originally Posted by K4Z
Okay Dokay. I take it that you have no more rebutle :mrgreen: :mrgreen:
Perhaps programming is not your favorite part, but it's the only way to explain it...
Code:
const
 CrazyPostLimit = 7;
 AcceptableLevel= High(Cardinal);
begin
 repeat
  if &#40;PostCount&#40;'Lifepower'&#41; < CrazyPostLimit&#41;or&#40;Trunc&#40;Amount&#40;BS&#41;&#41; < AcceptableLevel&#41; then
  begin
   Quote&#40;'K4Z'&#41;;
   Reply&#40;Argument&#41;;
  end else
  begin
   if &#40;Random&#40;2&#41; = 0&#41; then 
    begin
     Quote&#40;Posts&#91;Random&#40;Length&#40;Posts&#41; + 1&#41;&#93;&#41;;
     Reply&#40;Nonsense&#41;;
    end else Break;
   end;
 until &#40;Closed&#40;Thread&#41;&#41;;
end;
[/offtopic]