nm, Saintdog told me how... to make admins have a certian image other than mods do this...
instead of adding this:
PHP Code:
$post[verify] = " ";
$usergroupid=$post[usergroupid];
if ($usergroupid == "6") { $post[verify] = "<br><img src=\images\verify\admin.gif alt=ADMINISTRATOR width=80 height=20></img>"; }
add this:
PHP Code:
$post[verify] = " ";
$usergroupid=$post[usergroupid];
if ($usergroupid == "6") {
$post[verify] = "<img src=\images\verify\admin.gif alt=ADMINISTRATOR width=80 height=20></img>";
} elseif ($usergroupid == "5") {
$post[verify] = "<img src=\images\verify\mod.gif alt=MODERATOR width=80 height=20></img>";
}