Falls Du es noch nicht selber rausgefunden haben solltest: das entsprechende Templates ist MEMBERINFO (26340).

Dieser Part hier ist der, für den Du Dich interessierst. Wenn Du willst, kannst Du das einfach so in Dein Template reinkopieren und den alten Teil zwischen <!-- main info - avatar, profilepic etc. --> und <!-- / main info - avatar, profilepic etc. --> ersetzen, es sollte keine Fehler hervorbringen (falls doch, kannst Du ja immer noch den alten Zustand wiederherstellen).

Code:
<!-- main info - avatar, profilepic etc. -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
	<td class="tcat">$vbphrase[view_profile]<span class="normal">: $userinfo[username]</span></td>
</tr>
<tr>
	<td class="alt2">
		<table cellpadding="0" cellspacing="0" border="0" width="100%">
		<tr>
			<td style="border-bottom:1px solid $stylevar[tborder_bgcolor]" width="100%" colspan="2">						
				<div class="bigusername">$userinfo[musername] $userinfo[onlinestatus]</div>
				<if condition="$userinfo['rank'] OR $userinfo['reputationdisplay']">
					<div align="left" style="padding:1px">
						<if condition="$userinfo['rank']"><div align="left">$userinfo[rank]</div></if>
						<if condition="$userinfo['reputationdisplay']"><div align="center">$userinfo[reputationdisplay]</div></if>
					</div>
				</if>

				<if condition="$userinfo['usertitle']"><div class="smallfont" align="left">$userinfo[usertitle]</div></if>
			</td>
			<if condition="$show['profilepic']">
			<td valign="top" align="$stylevar[right]" rowspan="2">
				<img src="$userinfo[profilepicurl]" $userinfo[profilepicsize] alt="<phrase 1="$userinfo[username]">$vbphrase[xs_picture]</phrase>" border="0" style="border:1px solid $stylevar[tborder_bgcolor]; border-top:none" />
			</td>
			</if>
		</tr>
		<tr valign="top">
			<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>&nbsp;</td>
			</if>
			<td class="smallfont" valign="bottom" align="$stylevar[right]">
				<if condition="$show['lastactivity']">
					<div>$vbphrase[last_activity]: $userinfo[lastactivitydate] <span class="time">$userinfo[lastactivitytime]</span>&nbsp;</div>
				</if>
				<if condition="$show['currentlocation']">
					<div>$userinfo[action] $userinfo[where]<if condition="$show['detailedtime']"> - <else /> @ </if> $userinfo[time]&nbsp;</div>
				</if>
			</td>
		</tr>
		</table>
	</td>
</tr>
</table>
<!-- / main info - avatar, profilepic etc. -->
Und $userinfo[rank] ist schließlich die Variable, welche die Sternchen an der Stelle anzeigt, wo Du sie haben willst. Einfach ein wenig durch die Gegend schieben und ausprobieren.