OK, here is what I use in my postbit templates. I do not use the legacy one, but try it and let me know how it works for you.
In your postbit (or legacy) template, find:
HTML Code:
<if condition="$show['postcount']">#<a href="showpost.php?$session[sessionurl]p=$post[postid]&postcount=$post[postcount]" target="new"><strong>$post[postcount]</strong></a> </if>
Right above it, add:
HTML Code:
<!-- checks for warning system -->
<if condition="$post[usergroupid]!=6 AND $post[usergroupid]!=7 AND can_moderate($forum[forumid], '', $bbuserinfo[userid])"><a href='Warn.php?do=WarnUser&id=$post[userid]&post=$post[postid]'>Warn $post[username]</a> ?
</if>
<if condition="$post[usergroupid]!=6 AND $post[usergroupid]!=7 AND ($bbuserinfo[usergroupid]==7 OR $bbuserinfo[usergroupid]==6)">
<a href='Warn.php?do=ViewWarnings&id=$post[userid]'>View $post[username]'s Warnings</a> ?</if>
<if condition="$post[userid]==$bbuserinfo[userid] AND $post[usergroupid]==2 AND $post[warning_level]>0">
<a href='Warn.php?do=ViewMyWarnings'>View your Warnings</a> ?</if>
<!-- end of warning system -->
This is the code that makes the "Warn XYZ" and "View XYZ's warnings" appear.
For the number of points each user has, to appear in the post:
Find:
HTML Code:
<if condition="$show['reputation']">$post[reputationdisplay]</if>
Right below this, add:
HTML Code:
<if condition="$post[usergroupid]==2"><BR>Warns Level: $post[warning_level]</if>
Let me know if these work for you, as I said it's hard for me to remember if anything else needs to be changed, but I'll help you out to make it work for you.
Rgds