Kmaster for the postbit try this ::
open admin/functions.php
find:
PHP Code:
$post[onlinetime] = dotimeonline($post[timeonline]);
replace it with:
PHP Code:
if($post[usergroupid] == 6) {
$post[onlinetime] = "";
} else {
$post[onlinetime] = dotimeonline($post[timeonline]);
}
open member.php
find:
PHP Code:
eval("\$getinfo_timeonline = \"".gettemplate('getinfo_timeonline')."\";");
replace it with:
PHP Code:
if($userinfo[usergroupid] == 6) {
$getinfo_timeonline = "";
} else {
eval("\$getinfo_timeonline = \"".gettemplate('getinfo_timeonline')."\";");
}
finally
open timeonline.php
find:
PHP Code:
$totalusers = $DB_site->query_first("
SELECT COUNT(*) AS users
FROM user");
replace with:
PHP Code:
if($bbuserinfo[usergroupid] != 6) {
$totalusers = $DB_site->query_first("
SELECT COUNT(*) AS users
FROM user
WHERE usergroupid != 6");
} else {
$totalusers = $DB_site->query_first("
SELECT COUNT(*) AS users
FROM user");
}
then find:
PHP Code:
$leadtime = $DB_site->query("
SELECT userid, username, joindate, timeonline
FROM user
ORDER by timeonline DESC LIMIT $startat,$perpage");
replace with:
PHP Code:
if($bbuserinfo[usergroupid] != 6) {
$leadtime = $DB_site->query("
SELECT userid, username, joindate, timeonline
FROM user
WHERE usergroupid != 6
ORDER by timeonline DESC LIMIT $startat,$perpage");
} else {
$leadtime = $DB_site->query("
SELECT userid, username, joindate, timeonline
FROM user
ORDER by timeonline DESC LIMIT $startat,$perpage");
}
Haven't tested it yet Kmaster.... but give it a shot

regards...
g-force2k2