There is one regarding adding the gender to the postbit, one for adding country flags.... search for terms regarding those and you can find stuff, I'm sure.
But basically, you have a template hook right in that area - $template_hook[postbit_userinfo_left]. So, you really only need to write a plugin to use that hook (I usually use a postbit_display hook):
PHP Code:
$template_hook[postbit_userinfo_left] .= $post['field8'];
or
PHP Code:
eval('$template_hook[postbit_userinfo_left] .= " ' . fetch_template('your-template') . '";');
Go look for those other mods (you can even look in the add-ons section for just mods that add to the postbit/showthread page (I can't remember what the prefix is).