if if it should be for all admins, thats very easy to do:
in admin/functions.php go to section getpostbit, and before this lines:
PHP Code:
// do posts from ignored users
if (!$ignore[$post[userid]]) {
eval("\$retval = \"".gettemplate("postbit")."\";");
} else {
eval("\$retval = \"".gettemplate("postbit_ignore")."\";");
}
add this lines:
PHP Code:
if ($post[usergroupid] == 6) {
$post[username]="<img src='images/".$post[userid].".gif'>";}