My MP is a LOT different...just a number equal to the number of days you've been registered. I made it by just doing this:
Find:
PHP Code:
$postsperday = sprintf("%.2f",($post[posts] / $jointime));
in showthread.php
and under it put:
PHP Code:
// MP
$past = date($post[joindate]);
$present = date(time());
$mp = floor(($present - $past) / (3600 * 24));
// STOP MP
Then, in the postbit template I put "MP: $mp" (minus quotes of course) under HP...and HP is just posts...no fancy bar. My board is quasi ghetto
That may seem easy for some of you people, but with my limited PHP skill that took me forever!!!