Mod İçin Açıklamaya Gerek Yok Aslında;
Sadece Admin Yetkisindekilerin Değiştirebildiği şekilde ayarlıdır.

Ne işe yarar : Profil Yılzdızları Gibi Resimler Ekleyip Farklı Bir Yazı Koyabilirsiniz Örneğin : Takım , Extra Yetki Forumun Kralicesi gibi bi yazı

Admin Yıldızı: Otomatık olarak tum adminlere VERİLMEZ Manual Olarak Adminlerin Profiline Eklenmeli
[img width=700 height=148]http://img511.imageshack.us/img511/7262/2copymi1.jpg[/img]
[img width=700 height=349]http://img124.imageshack.us/img124/9107/1copyrk8.jpg[/img]
Geçelim Açıklamaya:

Profile.template.php açın :

Kod: (Bul)
// If karma is enabled let the admin edit it...
Kod: (üstüne ekle)
// Ek Ozellikler Dream...
if ($context['user']['is_admin'])
	{
		echo '	<tr>
								<td colspan="2"><hr width="100%" size="1" class="hrcolor" /></td>
							</tr>
							<tr>	
								<td><b><font color="red">Admin Simgesi:</font></b></td>	<td><input type="text" name="default_options[profile_posadminsimge]" size="50" value="', @$context['member']['options']['profile_posadminsimge'], '" /></td>
							</tr>
				<tr>
								<td colspan="2"><hr width="100%" size="1" class="hrcolor" /></td>
							</tr>
							<tr>	
								<td><b>Ek-1: </b></td>	<td><input type="text" name="default_options[profile_postek1]" size="50" value="', @$context['member']['options']['profile_postek1'], '" /></td>
							</tr>
				<tr>
								<td colspan="2"><hr width="100%" size="1" class="hrcolor" /></td>
							</tr>
							<tr>	
								<td><b>Ek-2: </b></td>	<td><input type="text" name="default_options[profile_postek2]" size="50" value="', @$context['member']['options']['profile_postek2'], '" /></td>
							</tr>';
	}
Display.template.php açın :

Kod: (bul)
// Show avatars, images, etc.?
Kod: (üstüne ekle)
// Ek Ozellikler Dream...
			
			if (!empty($message['member']['options']['profile_postek1']))	
			{
				$postek1 = parse_bbc($message['member']['options']['profile_postek1']);
				echo ' ' . $postek1 . '';
			}				
			
			echo '				
								<br />';
			if (!empty($message['member']['options']['profile_postek2']))	
			{
				$postek2 = parse_bbc($message['member']['options']['profile_postek2']);
				echo ' ' . $postek2 . '';
			}				
			
			echo '				
								<br />';
Kod: (bul)
// Show the member's custom title, if they have one.
Kod: (üstüne ekle)
// Adminsimge by Dream...
			
			if (!empty($message['member']['options']['profile_posadminsimge']))	
			{
				$posadminsimge = parse_bbc($message['member']['options']['profile_posadminsimge']);
				echo '<br /> ' . $posadminsimge . '';
			}				
			
			echo '				
								<br />';
Alıntıdır...