You could make a plugin in Plugin Manager-> Add A New Plugin
hook: postbit_display_complete
Give it a name, leave execution order as 5.
php code:
PHP Code:
if (is_member_of($vbulletin->userinfo, 8))
{
$this->post['avatarurl'] = "/forums/images/misc/noavatar.gif";
$this->post['avwidth'] = 'width="120"';
$this->post['avheight'] = 'height="120"';
}
Assuming 8 is your banned usergroup... Change the file name to the avatar and height and width to your needs.