MyBB Community Forums

Full Version: reputation param..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys..
do you know how can i change the reputation param (minimum 10 messages per user Big Grin )?
If I understand you correctly, you want users to be able to give reputations only after they have 10 messages posted. This currently is not a default feature of MyBB; you would need a modification.
yes, you can give'me the modification or you can while make?
He never said he'd do it, did he?
single i asked?
dennis mike Wrote:single i asked?

That makes no sense
excuse'me but no speak english very good.
I'am mexican
Thats fine, just wanted to make sure that it was clear that dennis wasn't going to make the plugin unless he does it on his own time.

You should ask in the Code Modifications forum
ok thank's
I assume you mean you want the person giving reputation to have 10 posts before they can be allowed to give other people reputation.

The modification in this case is actually quite simple:
Open reputation.php
Find:
	// This user doesn't have permission to give reputations.
Above it, add:
	if($mybb->user['postnum'] < 10)
	{
		$message = "You need at least 10 posts to give reputation";
		eval("\$error = \"".$templates->get("reputation_add_error")."\";");
		output_page($error);
		exit;
	}