just add this coding to the admin/functions.php
find:
PHP Code:
// do ip addresses
under it add:
PHP Code:
if($bbuserinfo[usergroupid] == XX) { // admin usergroupid
$extraimg = "<img src='{img src here}' border=0>"; // img for administrators
} elseif($bbuserinfo[usergroupid] == XX) { // supermod usergroupid
$extraimg = "<img src='{img src here}' border=0>"; // img for smods
} elseif($bbuserinfo[usergroupid] == XX) { // moderator usergroupid
$extraimg = "<img src='{img src here}' border=0>"; // img for moderators
} else {
$extraimg = "";
}
then open the postbit template find:
under it add:
regards... hope that helps...
g-force2k2