although saying that, the current verson could be changed to support this feature, all you would need to do is change
PHP Code:
// check for permission
if (($bbuserinfo[usergroupid] == "1") or ($bbuserinfo[usergroupid] == "3") or ($bbuserinfo[usergroupid] == "4")) {
show_nopermission();
}
to
PHP Code:
// check for permission
if ($bbuserinfo[userid] == "<id>") {
show_nopermission();
}
where <id> is the id of the user you want to have access to it.