ok... i try...
i've found into siggen.php this code:
#--[ IMAGE CREATION ]------------------------------------------------------
// Choose the character image
if( $configData['charlogo_disp'] )
{
// Check for custom/uploaded image
$custom_user_img = $configData['image_dir'].$configData['user_dir'].$sig_name.'.png';
// Set custom character image, based on name in DB
if( file_exists($custom_user_img) )
{
$im_user_file = $custom_user_img;
}
// If custom image is not found, check for race and gender
elseif( !empty($sig_race) )
{
// Set race-gender based image
if( !empty($sig_gender) )
{
$im_user_file = $configData['image_dir'].$configData['char_dir'].$sig_race.'-'.$sig_gender.'.png';
}
// Set race only image
else
{
$im_user_file = $configData['image_dir'].$configData['char_dir'].$sig_race.'.png';
}
} // Set default character image
else
{
$im_user_file = $configData['image_dir'].$configData['charlogo_default_image'].'.png';
}
}
[...]
Ok ok ok... i think that it's only (:P) necessary a recursive IF cycle into this one... before the check for the race we need the check for the class...
In italian we say: "tra il dire e il fare c'è di mezzo il mare"... translated it looks like: "between ASK and DO there's the sea" (ok, in english does not play well :\)... i wanna just say that i don't know how i can do all this... some ideas?