There's a "Points" field in the Users table. Every post page has a query that inserts the appropriate amount of points into the field by adding points to the existing amount.
For example, the every status gives you 4 points.
$sql = mysql_query("UPDATE Users SET Points = Points + 4 WHERE Username = '$_COOKIE[user]'");
if(!$sql) {
die(mysql_error());
}