Create a new user profile field.
Select Single-Line Text Box.
Call it for example HONOURS, or something if for giving medals to your users.
After that, note the FIELD NUMBER.
Then go to Postbit or Postbit_legacy, and find:
Code:
<if condition="$post['rank']"><div class="smallfont">$post[rank]</div></if>
After that add:
Code:
<if condition="$post[fieldX] != ''"><div>
<img src="$post[fieldX]">
</div></if>
Or place it wherever you want.
NOTE: Replace X with the profile field number.