Nice hack ... but here's how I set it up on my forum:
// Custom Moderator Titles
if ( $post[usertitle] == 'Moderator' )
{
if ( $post[posts] > 30 and $post[posts] < 100 )
{
$post[usertitle] = 'Junior Moderator';
}
elseif ( $post[posts] == 100 and $post[posts] < 301 )
{
$post[usertitle] = 'Special Moderator';
}
elseif ( $post[posts] > 300 )
{
$post[usertitle] = 'Expert Moderator';
}
}
// End Custom Moderator Titles
|