Well, the user should see his own warning records, shouldn't he? I mean how else can he know how many warning points he has, and how many warnings? He cannot see other users warnings, only his own.
As for the profile thing, there are two things that you have to add in your public user profile. One it the thing that shows the "Warn XYZ" and "View XYZ Warnings" (or View Your Warnings) links, and one is the user Alerts, Warnings, Warning Points and Bans data. These are well defined in the instructions, but here they are again for your convenience:
This is the part that adds the Warn links etc.:
Code:
<!-- checks for warning system -->
<td class="thead" align="right">
<div class="smallfont" style="float:$stylevar[right]">
<if condition="THIS_SCRIPT=='member' AND $vboptions[warn_allowoffpost]==1 AND $buttons=='Text'">
<if condition="$showwarnlink==1">
<if condition="$vboptions['warn_allownotes']==1">
<a href='Warn.php?do=NoteUser&id=$post[userid]&post=0'>Add Note for $post[username]</a> </if>
<a href='Warn.php?do=WarnUserNoPost&id=$userid'>Warn $userinfo[username] (non-post related)</a> <a href='Warn.php?do=ViewWarnings&id=$userinfo[userid]'>View $userinfo[username]'s Warnings</a>
</if>
<if condition="$showviewyourslink==1">
<a href='Warn.php?do=ViewMyWarnings'>View your Warnings</a>
</if>
</if>
<if condition="THIS_SCRIPT=='member' AND $vboptions[warn_allowoffpost]==1 AND $buttons=='Buttons'">
<if condition="$showwarnlink==1">
<if condition="$vboptions['warn_allownotes']==1">
<a href='Warn.php?do=NoteUser&id=$post[userid]&post=0'><input type="button" class="button" name="warn" value="Add Note for $post[username]" accesskey="n" onClick="window.location='Warn.php?do=NoteUser&id=$post[userid]&post=0'"></a>
</if>
<a href='Warn.php?do=WarnUserNoPost&id=$userid'><input type="button" class="button" name="warn" value="Warn $post[username] (non-post related)" accesskey="w" onClick="window.location='Warn.php?do=WarnUserNoPost&id=$userid'"></a> <a href='Warn.php?do=ViewWarnings&id=$userinfo[userid]'><input type="button" class="button" name="warn" value="View $post[username]'s Warnings" accesskey="v" onClick="window.location='Warn.php?do=ViewWarnings&id=$userinfo[userid]'"></a>
</if>
<if condition="$showviewyourslink==1">
<a href='Warn.php?do=ViewMyWarnings'><input type="button" class="button" name="warn" value="View Your Warnings" accesskey="v" onClick="window.location='Warn.php?do=ViewMyWarnings'"></a>
</if>
</if>
<!-- end of warning system -->
And here is the part that shows the warnings, points, bans etc.:
Code:
<if condition="$showpoints==1">
<if condition="$userinfo[alerts]>0">
<font color="#ff0000">
Alerts: $userinfo[alerts]<BR>
<font color="#000000">
</if>
<if condition="$userinfo[warnings]>0">
<font color="#ff0000">
Warnings: $userinfo[warnings]<BR>
<font color="#000000">
</if>
<if condition="$userinfo[warning_level]>0">
<font color="#ff0000">
Warnings Level: $userinfo[warning_level]<BR>
<font color="#000000">
</if>
<if condition="$userinfo[warning_bans]>0">
<font color="#ff0000">
Number of bans: $userinfo[warning_bans]<BR>
<font color="#000000">
</if>
</if>
Insert them where you see fit.