If you want to do it on a "per-user" basis, try this
Open mod/user.php
Find:
Code:
require("./global.php");
modlog(iif($userid!=0,"user id = $userid",""));
Underneath add:
Code:
if (($userid=="1") && ($bbuserinfo[usergroupid]!="6")) {
echo"<p>You cannot view this profile!</p>";
exit;
}
It works just as well as Logician's code, except this can target specific users as well
Satan