case 'boostedcreature':
$boost = mysql_select_single("SELECT `raceid` FROM `boosted_creature` LIMIT 1;");
if ($boost !== false) {
sendMessage(array(
'boostedcreature' => true,
'raceid' => (int)$boost['raceid']
));
}
sendMessage(array(
'boostedcreature' => false,
'raceid' => 0
));
break;