On the postbit template, there is a variable,
Code:
$vbphrase[posts]: $post[posts]
that displas the poster's post count.
I have it, a a few other things wrapped in a conditional,
Code:
<if condition="is_member_of($bbuserinfo, 5,6,7)">
</if>
so that only staff can see anybody's post count
If you want to allow anybody to see everybody's post count except yours, you would have to use a different conditional.
Code:
<if condition="$post[userid] != #">
</if>
where # is your userid (probably 1)
--don