I am getting the following problem: yellow stars work, but if a user reaches 1000 posts or more, stars don't change color and they go back to 1 yellow star and stick with it.
So basically if you have 1000, 2000, 5000, or 9000 posts you only have 1 yellow star, they don't change color, they don't increase amount, nothing. If you have less than 1000 posts then yellow stars increase.
This is the code i am using which is the one you specified in the install file:
Code:
// ++++++++++++++++++++++++++++++++++++++++++
// vB Galaga Hack - Created By Zero Tolerance
$post['stars']=intval(str_replace(",","",$post['posts'])/100);
// Limit The Stars
if($post['stars'] >= 50){
$post['stars'] = 49;
}
// Get level
if($post['stars'] >= 40){
$post['starsc']=$post['stars'] -39;
$post['s_ext']="red";
} elseif($post['stars'] >= 30){
$post['starsc']=$post['stars'] -29;
$post['s_ext']="blue";
} elseif($post['stars'] >= 20){
$post['starsc']=$post['stars'] -19;
$post['s_ext']="green";
} elseif($post['stars'] >= 10){
$post['starsc']=$post['stars'] -9;
$post['s_ext']="grey";
} else {
$post['starsc']=$post['stars'] + 1;
$post['s_ext']="yellow";
}
$post['stars_display']="";
for($iCount=0;$iCount<($post['starsc']);$iCount++){
$post['stars_display'].="<img src='images/galaga/s_{$post['s_ext']}.gif'>";
}
// vB Galaga Hack - Created By Zero Tolerance
// ++++++++++++++++++++++++++++++++++++++++++
Any help would be greatly appreciated
Thank you