If you're already using v2.2.0, you can also do this.
Add this:
Code:
if ($userinfo[usergroupid]==6) {
$userinfo[activity] = 'admin';
}
right after this:
Code:
default:
$userinfo[activity] = 'unknown';
}
And then add this:
Code:
case 'admin':
$userinfo[where] = "This is the text that will appear for all admins!";
break;
right before this:
Code:
default:
// Let's show the admin the location but put something false up for everyone else..
CODE YOU MUST ADD:
In online.php, add this:
Code:
$userinfo[$key][usergroupid] = $user[usergroupid];
right after this:
Code:
$userinfo[$key][invisible] = $user[invisible];