How can I make it so you need 15 karma instead of posts to modify karma?
you would need a mod to do this.
However, it does not look like anyone has created such a mod yet.
--moving to mod request board.
Ok, thanks for the move..
Can someone please make this mod for me??
You can do it with a few manual changes.
1. Load.php
$user_info['groups'] = array_unique($user_info['groups']);
$user_info['karma'] = array(
'good' => $user_settings['karmaGood'],
'bad' => $user_settings['karmaBad'],
'allow' => false, //you can't edit your own karma
'allow_edit' => $user_settings['karmaGood'] - $user_settings['karmaBad'] > 15
);
'allow' => !$user_info['is_guest'] && $user_info['posts'] >= $modSettings['karmaMinPosts'] && allowedTo('karma_edit') && !empty($modSettings['karmaMode']) && $ID_MEMBER != $user
'allow' => !$user_info['is_guest'] && $user_info['karma']['allow_edit'] && $user_info['posts'] >= $modSettings['karmaMinPosts'] && allowedTo('karma_edit') && !empty($modSettings['karmaMode']) && $ID_MEMBER != $user
2. Karma.php
fatal_lang_error('smf61', false)
//You need a minimum karma to be able to edit karma
if (!$user_info['karma']['allow_edit'])
fatal_lang_error('karma_allow_edit');
3. Errors.english.php or (Errors.your_language.php)
?>
$txt['karma_allow_edit'] = 'You need 15 karma points (total positive) to be able to edit other people\'s karma.';
DONE.
Replace 15 with the minimum number you want. This will count the total positive karma regardless of the type you have selected.
Maybe someone can make it in a mod, add an option and put it in the admin section. For that you need to modify a couple of more files, although they are all really small changes.
Oh no!
Now I can't see my [Rep++] Button :(
Any Fix for that please?
Thank you for actually helping BTW.
What is the [Rep++] button?
Its my add karma button, I fixed it though, thank you very much for your help :)
Also, how do I make it so I start with 10 karma?