MyBB Community Forums

Full Version: Reputation from 50 posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!
I have reputation on my forum but "noob" users giving negative points.
I need a reputtion system, that can be given by users with 50 posts or above.
Just make a new usergroup named "Active" or whatever, where users with 50 or more posts are moved to.

Then name the "Registered" user group "Noobs" and set 'Can Give Reputations to Users' to 'NO' for the Noobs-group.
Can be done by a simple code mod.

Open reputation.php

Find
if($mybb->input['action'] == "add" || $mybb->input['action'] == "do_add")
{

Add below

	if($mybb->user['postnum'] <= 50)
	{
		$message = $lang->add_no_permission;
		eval("\$error = \"".$templates->get("reputation_add_error")."\";");
		output_page($error);
		exit;
	}
that's another (and probably better) way Big Grin