If you want the Level, Exp, HP, MP and such go into admin/functions.php and find
PHP Code:
eval("\$post[profile] = \"".gettemplate("postbit_profile")."\";");
eval("\$post[search] = \"".gettemplate("postbit_search")."\";");
eval("\$post[buddy] = \"".gettemplate("postbit_buddy")."\";");
and ABOVE that do something like
PHP Code:
$exp = $post[posts];
$hp = round($exp * .75);
if ($hp < 1) {
$hp = 1;
}
else {
$hp = $hp; }
$mp = round($jointime * $hp / 5);
if ($mp < 1) {
$mp = 1;
}
else {
$mp = $mp;
}
$lvl = round(($mp + $hp) / 5);
if ($lvl < 1) {
$lvl = 1;
}
else {
$lvl = $lvl;
}
then in the postbit template add $lvl, $exp, $hp, and $mp wherever you want. That is just a very simple Level, Exp, HP, MP hack and there ARE better one's out there if you look.