Fking open register.php find:
PHP Code:
if (!$testreferrerid=$DB_site->query_first("SELECT userid FROM user WHERE username = '".addslashes($referrername)."'")) {
eval("standarderror(\"".gettemplate("error_badreferrer")."\");");
exit;
}
under it add:
PHP Code:
else {
$DB_site->query( "UPDATE user SET points=points+5 WHERE userid='$testreferrerid[userid]'" );
}
the open both newreply.php and newthread.php and find:
PHP Code:
$dotitle"."lastpost='".time()."' WHERE userid='$bbuserinfo[userid]'");
and replace with:
PHP Code:
$dotitle"."lastpost='".time()."',points=points+1 WHERE userid='$bbuserinfo[userid]'");
then run the query:
ALTER TABLE user ADD points int(5) unsigned NOT NULL DEFAULT '0'
you can then add to the postbit template $post[points] to show points and to the getinfo template $userinfo[points]...
hope that helps some...
regards...
g-force2k2