this is easily done, so i haven't released it as a full hack, because one block one change and one new template isn't reallly much ^^
open functions.php
goto section getpostbit
there find:
PHP Code:
// do posts from ignored users
if (!$ignore[$post[userid]]) {
eval("\$retval = \"".gettemplate("postbit")."\";");
} else {
eval("\$retval = \"".gettemplate("postbit_ignore")."\";");
}
just before add:
PHP Code:
// Admin Postbit Hack
if ($bbuserinfo[usergroupid] == 6) {
eval("\$adminpostbit = \"".gettemplate("adminpostbit")."\";");
} else {
$adminpostbit = "";
}
change or add other usergroupids if you want in the if-clause
then edit your postbittemplate, replace $post[posts] with $adminpostbit
and last step add template adminpostbit within there must be the line $post[posts] and whatever you want just to show up for your admins/mods and so on