Guys, I think I found a MUCH simpler way to do this. I assumed there was a function in vB to compute the reputation power, and there is. Why not use this function?
In functions_reputation.php
Find (line 81):
Code:
$reputation_value = $post['reputation'];
Immediately after, ADD:
Code:
$reputation_power = fetch_reppower($post, $perms);
$post['reputationpower'] = $reputation_power;
Now, you can use $post[reputationpower] the same way you can use $post[reputation] in your postbit template...