I have been pulling my hair out looking for the option where I can lower each level of reputation from 100 down to somthing else in the admin CP. Can anyone point me in the right direction please?
sure, www.vbulletin.com/forum/ Ask your support team, I'm sure they will be able to help you much faster than we can. More knowledgable too.
Open includes/function_reputation.php and edit this code if ($reputation_value > 500) { // bright green bars take 200 pts not the normal 100 $reputation_value = ($reputation_value - ($reputation_value - 500)) + (($reputation_value - 500) / 2); } $reputationbars = intval($reputation_value / 100); // award 1 reputation bar for every 100 points if ($reputationbars > 10) { $reputationbars = 10; } Code (markup):