The premise of this mod is simple; it replaces the avatar of a banned user with a picture you want to replace it with, maybe a banned image or something that humiliates the member.
This allows you to put 'Banned' avatars to decent use (those that say banned on them in big, bold letters).
How to use:
First, find in Postbit/Legacy:
Replace with:
Then, in Memberinfo template, find:
And replace with:
Screenshots and Banned Image I used below (or use a banned image from one of the many avatar packs that has them even though they aren't usable by default):
Common Questions
1. How do I change the image URL for the banned avatar?
You replace images/avatars/banned.PNG with whatever you want to replace it with.
2. What's with the basic default image?
I needed a default, had short time and my board has a distinct gaming theme, therefore the default is of a Glum Reaper from Super Mario RPG.
3. It don't work!
Make sure banned users can use/display avatars. Then the mod should work.
This allows you to put 'Banned' avatars to decent use (those that say banned on them in big, bold letters).
How to use:
First, find in Postbit/Legacy:
PHP:
<if condition="$show['avatar']"><td class="alt2"><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></td></if>
Replace with:
PHP:
<if condition="$show['avatar']">
<td>
<if condition="is_member_of($post, 8)">
<a href="member.php?$session[sessionurl]u=$post[userid]"><img src="images/avatars/banned.PNG" alt="Member is Eliminated" title="Member is Eliminated" /></a>
<else />
<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>
</if></td></if>
Then, in Memberinfo template, find:
PHP:
<if condition="$show['avatar']">
<td><img src="$userinfo[avatarurl]" $userinfo[avatarsize] alt="<phrase 1="$userinfo[username]">$vbphrase[xs_avatar]</phrase>" border="0" style="border:1px solid $stylevar[tborder_bgcolor]; border-top:none" /></td>
<else />
<td> </td>
</if>
And replace with:
PHP:
<if condition="$show['avatar']">
<td>
<if condition="is_member_of($post, 8)">
<a href="member.php?$session[sessionurl]u=$vbulletin->userinfo[userid]"><img src="images/avatars/banned.PNG" alt="Member is Eliminated" title="Member is Eliminated" /></a>
<else />
<a href="member.php?$session[sessionurl]u=$vbulletin->userinfo[userid]">
<img src="$vbulletin->userinfo[avatarurl]" $vbulletin->userinfo[avwidth] $vbulletin->userinfo[avheight] alt="<phrase 1="$vbulletin->userinfo[username]">$vbphrase[xs_avatar]</phrase>" border="0" />
</a>
</if></td></if>
Screenshots and Banned Image I used below (or use a banned image from one of the many avatar packs that has them even though they aren't usable by default):
Common Questions
1. How do I change the image URL for the banned avatar?
You replace images/avatars/banned.PNG with whatever you want to replace it with.
2. What's with the basic default image?
I needed a default, had short time and my board has a distinct gaming theme, therefore the default is of a Glum Reaper from Super Mario RPG.
3. It don't work!
Make sure banned users can use/display avatars. Then the mod should work.