Tha Rock then you can just user the admin/functions.php to make your own type of hack...
find:
PHP Code:
// do ip addresses
under it add:
PHP Code:
if($bbuserinfo[posts] >= 0) {
$post[specialimg] = "<img src=\"[url here].[extension here]\" border=\"0\">";
} elseif($bbuserinfo[posts] >= 50) {
$post[specialimg] = "<img src=\"[url here].[extention here]\" border=\"0\">";
}
and you can keep that going and user whichever posts that you want and different images etc... i hope you get my point...
then after if you want to user custom images for moderators... smods and administrators...
under my other coding add:
PHP Code:
if($bbuserinfo[usergroupid] == 6) { // Image for Administrators
$post[specialimg] = "<img src=\"[url here].[extention here]\" border=\"0\">";
} elseif($bbuserinfo[usergroupid] == 7) { // Image for Smods
$post[specialimg] = "<img src=\"[url here].[extention here]\" border=\"0\">";
} elseif($bbuserinfo[usergroupid] == 5) { // Image for Moderators
$post[specialimg] = "<img src=\"[url here].[extention here]\" border=\"0\">";
}
then in the postbit template where ever you want the image to show just place:
PHP Code:
$post[specialimg]
hope that helps you on your request
g-force2k2