Some users questioned the issue of allow moderators to send users to the group Miserable.. but only is allowed if Miserable Users Group is a Banned Group.
when you set the Miserable group, as a Banned group, the reputation link (balance) dissapear, and don't allow to give reputation to the post of a Miserable user.
With this 2 modifications, the miserable group, can be a BANNED GROUP and the balance of Reputation Link is showed and fully functional. Of course, this don't allow to give reputation to other users BANNED, ONLY allows to show the Miserable users in the forum, as a normal user..
this modifications:
PHP Code:
// in function_showthread.php edit
// after of:
$show['reputationlink'] = iif(($permissions['genericpermissions'] & CANUSEREP OR $post['userid'] == $bbuserinfo['userid']) AND $vboptions['reputationenable'] AND $bbuserinfo['userid'] AND $post['userid'] AND !($usergroupcache["$post[usergroupid]"]['genericoptions'] & ISBANNEDGROUP), true, false);
//add:
if ($post['usergroupid'] == "21")
{
$show['reputationlink'] = true;
}
---------------------------------------------------
// IN reputation.php edit
search:
if ($usergroupcache["$userinfo[usergroupid]"]['genericoptions'] & ISBANNEDGROUP)
{
eval(print_standard_error('error_reputationbanned'));
}
replace by:
if (($userinfo[usergroupid] != "21") AND ($usergroupcache["$userinfo[usergroupid]"]['genericoptions'] & ISBANNEDGROUP))
{
eval(print_standard_error('error_reputationbanned'));
}
//IN ALL CASES, REPLACE THE NUMBER "21" with the same value of $miserableid in phpinclude_start
That's all! enjoy! only rest to, set the Miserable users as a Banned group to allow moderators to move users to this group and ready to work...
REMEMBER SET ALL "21" values in the above code with de USER GROUP ID of miserable users, set in phpinclude_start at 3rd line as $miserableid
bye byeeee