ok this is what you should probably do
PHP Code:
if ($loggedin['invisible']==0 or $bbuserinfo['usergroupid']==6) {
becomes
PHP Code:
if ($loggedin['invisible']==0 or $bbuserinfo['usergroupid']==6 or $bbuserinfo['usegroupid'==7) {
find
PHP Code:
if ($loggedin['invisible']==1 and $bbuserinfo['usergroupid']!=6) {
continue;
}
becomes
PHP Code:
if ($loggedin['invisible']==1 and $bbuserinfo['usergroupid']!=6 and $bbuserinfo['usergroupid']==7) {
continue;
}
These are the only two modifications that you need to make, the first tells it to add a star after the users name to indicate that their invisible, the 2nd is to stop it from skipping that user if they are invisible and the your not an admin.
This is presuming that you usergroup for mods is 7.