Yes. You could a code snippet in the same file in the same location, that looks something like this:
$points = qa_get_logged_in_points();
if($points > 200 && $points < 1000 ) {
$qa_content=include QA_INCLUDE_DIR.'qa-page-user-200-1k.php';
break;
} else if ($points >= 1000 && $points < 5000 ) {
$qa_content=include QA_INCLUDE_DIR.'qa-page-user-1k-5k.php';
break;
} else if ($points >= 5000) {
$qa_content=include QA_INCLUDE_DIR.'qa-page-user-5k.php';
break;
}
The code snippet uses the points for current logged inuser.