Quote:
Originally Posted by hambil
You where onto something, but you didn't take it far enough. Here is the fix:
Find:
PHP Code:
$post['posts'] = vb_number_format($post['posts']);
Add above:
PHP Code:
global $rawposts;
$rawposts = $post['posts'];
Modify reputation power section as follows:
PHP Code:
$show['score'] = 1;
// reputation SECTION
// initialize reputation power
$score = 1;
// for every certain number of posts, gain a point
if ($vboptions['pcpower'])
{
$postfactor = intval($rawposts / $vboptions['pcpower']);
}
else
{
$postfactor = 0;
}
// for every certain number of reputation points, gain a point
if ($vboptions['kppower'])
{
$reputationfactor = intval($post['reputation'] / $vboptions['kppower']);
}
else
{
$reputationfactor = 0;
}
// for every certain number of days registered, gain a point
$timepassed = intval((TIMENOW - $repjoindate) / 86400);
if ($vboptions['rdpower'])
{
$timefactor = intval($timepassed / $vboptions['rdpower']);
}
else
{
$timefactor = 0;
}
// compute the user's total reputation power
$score = $score + $postfactor + $timefactor + $reputationfactor;
# the following only matters for admin
$perms = fetch_permissions(0, $post['userid'], $post);
if ($perms['adminpermissions'] & CANCONTROLPANEL AND $vboptions['adminpower'])
{
$score = $vboptions['adminpower'];
}
else if (($rawposts < $vboptions['minreputationpost']) OR ($post['reputation'] < $vboptions['minreputationcount']))
{
$score = 0;
}
That works for me. Good luck.
|
It actually work well now. Actually it works extremely well. Thanks for fixing it hambil!