no it has to do with yourself: the code of showing yourself at the browsing list is another part of code:
below the code above, find this:
PHP Code:
if ((!$bbuserinfo['invisible'] or $bbuserinfo['usergroupid'] == 6) and $bbuserinfo['userid'] <> 0) {
$userid = $bbuserinfo['userid'];
$username = $bbuserinfo['username'];
after that add:
PHP Code:
if($bbuserinfo['usergroupid']==6) $username="<font color='red'><b>".$username."</b></font>";
elseif($bbuserinfo['usergroupid']==5 or $bbuserinfo['usergroupid']==7) $username="<font color='green'><b>".$username."</b></font>";
now it should work