Nice hack. But I'm just curious, how do you add another level after RED (such, as Black)?. I've tried this:
// Limit The Stars
if($post['stars'] >= 50){
$post['stars'] = 50;
}
// Get level
if($post['stars'] >= 50){
$post['starsc']=$post['stars'] -50;
$post['s_ext']="black";
if($post['stars'] >= 40){
$post['starsc']=$post['stars'] -40;
$post['s_ext']="red";
But, obviously, it conflicts. Any suggestions?? I have some high posters..
|