Vbulletin Reputation

Discussion in 'vBulletin' started by aaron_nimocks, Feb 25, 2006.

  1. #1
    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?
     
    aaron_nimocks, Feb 25, 2006 IP
    fsmedia likes this.
  2. fsmedia

    fsmedia Prominent Member

    Messages:
    5,163
    Likes Received:
    262
    Best Answers:
    0
    Trophy Points:
    390
    #2
    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.
     
    fsmedia, Feb 25, 2006 IP
    aaron_nimocks likes this.
  3. aaron_nimocks

    aaron_nimocks Im kind of a big deal Staff

    Messages:
    5,563
    Likes Received:
    627
    Best Answers:
    0
    Trophy Points:
    420
    #3
    I have a thread there too. :)
     
    aaron_nimocks, Feb 25, 2006 IP
  4. GTAce

    GTAce Notable Member

    Messages:
    1,389
    Likes Received:
    78
    Best Answers:
    0
    Trophy Points:
    210
    #4
    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):
     
    GTAce, Feb 25, 2006 IP
    aaron_nimocks and Greg-J like this.
  5. aaron_nimocks

    aaron_nimocks Im kind of a big deal Staff

    Messages:
    5,563
    Likes Received:
    627
    Best Answers:
    0
    Trophy Points:
    420
    #5
    Found it and changed it thanks. Still no answer on vbulletin forums. Much quicker here. :)
     
    aaron_nimocks, Feb 25, 2006 IP
  6. Greg-J

    Greg-J I humbly return to you.

    Messages:
    1,844
    Likes Received:
    153
    Best Answers:
    0
    Trophy Points:
    135
    #6
    Green rep to you GTAce.

    I drove myself nuts looking for this in the admin panel for days...
     
    Greg-J, Mar 19, 2007 IP