Hello,
Wrap the output with if conditionals like this:
Code:
<if condition="is_member_of($bbuserinfo, 6)">
Admins Display This for editted post
</if>
</else>
<if condition="is_member_of($bbuserinfo, 2)">
Member Display this for editted post
</if>
The number "6" reflects that the user is an admin. That can include other usergroups like your s.mods and mods by adding their usergroup id like this;
Code:
<if condition="is_member_of($bbuserinfo, 6,5,7)">
Staff Display This for editted post
</if>