MyBB Community Forums

Full Version: reputation points?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
where do I change the reputation points?
(2011-05-08, 09:59 PM)mxx Wrote: [ -> ]where do I change the reputation points?

What do you mean? The reputation power?
AdminCP > Users & Groups > Usergroups > (pick the preferred usergroup) > Users and Permissions. There you can set the "Points to Award/Take Away" per usergroup.
If you want to set a user's reputation to a number of your own, you can run the following SQL query in phpMyAdmin:

UPDATE `mybb_users` SET `reputation` = 'X' WHERE uid = 'Y'

Where X is the number of rep and Y is the uid of the user you want to edit.
thanks