I could be wrong but it looks like you're defining that if the user who posted is in Usergroup 9 then $post[field8] will show up. If yes, then anyone (logged in or not) will be able to view field8 for that particular post. It may explain why you didn't see field8.
If you want only Usergroup "9" to see "$post[field8]" then try:
Code:
<if condition="is_member_of($bbuserinfo, 9)">$post[field8]</if>