Oh, I didn't notice before, in your code you've done the eval() after the template eval() and it would have to be before. So try this code:
PHP Code:
if ($_REQUEST['do'] == 'points')
{
$navbits = construct_navbits(array(
'' => 'points'
));
require_once(DIR . '/includes/functions_misc.php');
eval('$pointspages = "' . replace_template_variables($vbulletin->options[points_pages], true) . '";');
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('points_page') . '");');
}
And use $pointspages in your template (you have $point_pages above - of course you can use either one but make sure it is the same everywhere).