My banned groupid is 123

But not that is the problem ...
--------------- Added [DATE]1316020189[/DATE] at [TIME]1316020189[/TIME] ---------------
Yuhuuuuu , I make the modification succesfully .
Was pretty simple, look :
I search in
postbit_legacy for
<if condition="$show['avatar']">
And I find:
PHP Code:
<if condition="$show['avatar']">
<div class="smallfont">
<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if>
The modification that must be added,
is:
PHP Code:
<if condition="$post[usergroupid] == 123">
<img src="/forum/images/banned.png" alt="" border="0" />
<else />
But, you must put this above the $show_avatar thing, and after the </if> of $show_avatar thing, you must put another </if> , LIKE THIS :
PHP Code:
<if condition="$post[usergroupid] == 123">
<img src="/forum/images/banned.png" alt="" border="0" />
<else />
<if condition="$show['avatar']">
<div class="smallfont">
<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if>
</if>
You can replace
/forum/images/banned.png with your image url .
You can replace
123 with your banned groupid , usually
8 .
ENJOY
( for who's looking after this modification )