that is awesome

it worked like a charm for me.
Got some issues with skin, because i use a very complicated one, but i worked out to solve the problems.
I also got another problem that the "WARNED POST" image had NO links when showing on postbit, i solved doing this:
edited this plugin: AWS: Show Warning Options/Points in Postbit/Threads<
replaced this:
Code:
// Shall we show the warn sign?
if ($viewoption=='Mgm' AND ($useradmin==1 OR $usersmod==1 OR $usermod==1) AND $post[warn_flag]>0)
{
$showwarnsignmgm=1;
}
if ($viewoption=='All' AND $post[warn_flag]>0)
{
$showwarnsign=1;
}
with this:
Code:
// Shall we show the warn sign?
if (($useradmin==1 OR $usersmod==1 OR $usermod==1) AND $post[warn_flag]>0)
{
$showwarnsignmgm=1;
}
if ($viewoption=='All' AND $post[warn_flag]>0)
{
$showwarnsign=1;
}
now everything is working just fine...
i also did a little modification, instead of showing Warning Points as numbers in postbit, i changed to a little bar, that fill up when user gets more points
thanks again