If you need to make mods have seperate stars just do this:
Code:
if ($post[usergroupid]==5 || $post[usergroupid]==6)
// Admin and Supermod Stars
$starsgif = '<img src="images/stars/Admin1.gif" border=0 width="99" height="20">';
else
Change that to this:
Code:
if ($post[usergroupid]==5 || $post[usergroupid]==6)
// Admin and Supermod Stars
$starsgif = '<img src="images/stars/Admin1.gif" border=0 width="99" height="20">';
elseif ($post[usergroupid]==15)
$starsgif = '<img src="yourmodstarshere" border=0>';
else
You can also set different stars for a certain member by using $post[userid]. You can also have entirely different stars setup for mods by making $starsgif something like $starsmod, then at the bottom do something like
Code:
if ($post[usergroupid]==15)
$stars .= $starsmod
elseif ($post[posts] > 149)
$stars .= $stars8;
.....
Just use the elseif and it should work. Just make sure you have them setup so that the ones that are more specific come first. For example if you want different stars for yourself make sure it comes before the ones for the admins. If you already specify the ones for the admin it will give you those stars and ignore the ones for your userid.
I hope this helps. I have 2% PHP knowledge, but that's how i got it to work.