okay, for those of you using the bar graph here is the correct code to display the green, yellow and red images:
PHP Code:
//PM GAUGE HACK BY GOBLIN
$inboxpms=$DB_site->query_first("SELECT COUNT(*) AS messages FROM privatemessage WHERE userid=$bbuserinfo[userid] $ignoreusers");
$pmpercent=round(($inboxpms[messages] / $pmquota) * 100,2);
if ($pmpercent>50 && $pmpercent<=76) {
$barimg="https://vborg.vbsupport.ru/images/yellow.gif";
} else if ($pmpercent>75) {
$barimg="https://vborg.vbsupport.ru/images/red.gif";
} else {
$barimg="https://vborg.vbsupport.ru/images/green.gif";
}
//PM GAUGE HACK BY GOBLIN
* don't forget to change the path to the images