29.04.2011, 18:15
Auf Wunsch eines Users hier das "Tutorial" oder der "Fix" des Problemes, dass das nicht angezeigt wurde.
Anleitung:
DSLan\htdocs\templates\game_info_player.tpl öffnen und den Inhalt mit folgendem Code ersetzen:
Funktioniert nur bei der 1.4!
MfG Manuel
Anleitung:
DSLan\htdocs\templates\game_info_player.tpl öffnen und den Inhalt mit folgendem Code ersetzen:
Code:
<h2>{$lang->get("player")} {$info_user.username}</h2>
<table><tr><td valign="top">
<table class="vis" width="100%">
<tr><th colspan="2">{$info_user.username}</th></tr>
<tr><td width="80">{$lang->get("points")}:</td><td>{$info_user.points|format_number}</td></tr>
<tr><td>{$lang->get("rank")}:</td><td>{$info_user.rang}</td></tr>
{php}
$query = mysql_query('SELECT * FROM `users` WHERE `id` = ' . $this->_tpl_vars['info_user']['id']);
$data = mysql_fetch_assoc($query);
{/php}
<tr><td>Getötete Einheiten:</td><td>{php} print $data['killed_units_altogether']; {/php} ({php} print $data['killed_units_altogether_rank']; {/php}.)</td></tr>
{if empty($info_ally.short)}
<tr><td>{$lang->get("tribe")}:</td><td><a href="game.php?village={$village.id}&screen=info_ally&id=0"></a></td></tr>
{else}
<tr><td>{$lang->get("tribe")}:</td><td><a href="game.php?village={$village.id}&screen=info_ally&id={$info_ally.id}">{$info_ally.short}</a></td></tr>
{/if}
<tr><td colspan="2"><a href="game.php?village={$village.id}&screen=mail&mode=new&player={$info_user.id}">» {$lang->get("write_mail")}</a></td></tr>
{if $can_invite}
<tr><td colspan="2"><a href="javascript:ask('{$invite_confirm}', 'game.php?village={$village.id}&screen=ally&mode=invite&action=invite_id&id={$info_user.id}&h={$hkey}')">» {$lang->get("invite")}</a></td></tr>
{/if}
</table><br />
{$error}
<table class="vis" width="100%">
<tr><th width="180">{$lang->get("villages")}</th><th width="80">{$lang->get("coords")}</th><th>{$lang->get("points")}</th></tr>
{foreach from=$villages item=arr key=id}
<tr><td><a href="game.php?village={$village.id}&screen=info_village&id={$id}">{$arr.name}</a></td><td>({$arr.x}|{$arr.y})</td><td>{$arr.points|format_number}</td></tr>
{/foreach}
</table>
</td><td align="right" valign="top" width="240">
<table class="vis" width="100%">
<tr><th colspan="2">{$lang->get("profile")}</th></tr>
{if !empty($info_user.image)}
<tr><td colspan="2" align="center"><img src="graphic/player/{$info_user.image}" alt="Profilbild" /></td></tr>
{/if}
{if $age!=-1}
<tr><td>{$lang->get("age")}:</td><td>{$age}</td></tr>
{/if}
{if $sex!=-1}
<tr><td>{$lang->get("sex")}:</td><td>{$sex}</td></tr>
{/if}
{if $info_user.home!=''}
<tr><td>{$lang->get("location")}:</td><td>{$info_user.home}</td></tr>
{/if}
</table>
<br />
{if !empty($info_user.personal_text)}
<table class="vis" width="100%">
<tr><th>{$lang->get("personal_text")}</th></tr>
<tr><td align="center">{$info_user.personal_text}</td></tr>
</table>
{/if}
</td></tr></table>
Funktioniert nur bei der 1.4!
MfG Manuel