Kicking people in the butt is always fun.
About the error message, it shouldn't be too hard.
Take a look at functions.php, find this:
PHP Code:
if ($bbuserinfo[userid]==0) {
eval("standarderror(\"".gettemplate("error_nopermission_loggedout")."\");");
} else {
eval("standarderror(\"".gettemplate("error_nopermission_loggedin")."\");");
}
change it to
PHP Code:
if ($bbuserinfo[userid]==0) {
eval("standarderror(\"".gettemplate("error_nopermission_loggedout")."\");");
} elseif ($bbuserinfo[usergroupid]==555) {
eval("standarderror(\"".gettemplate("error_nopermission_arrested")."\");");
} else {
eval("standarderror(\"".gettemplate("error_nopermission_loggedin")."\");");
}
but change 555 to the usergroup of the arrested, and also create a template named error_nopermission_arrested.
Yup, that should work.