• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

deathlist nicaw

chaosb

www.originaltibia.com
Joined
Sep 14, 2008
Messages
267
Reaction score
0
Location
Poland
hello i have nicaw acc for avesta and when someone die its not write on page:/ help.
 
here is my deaths in characters.php



if ($cfg['show_deathlist']) {
if ($player->deaths) {
echo '<b>Latest Deaths</b><br/>';
$prevdate = 0;
foreach ($player->deaths as $death) {
if ($death['killer_id'])
$name = '<a href="characters.php?player_id='.$death['killer_id'].'">'.$death['killer_name'].'</a>';
else
$name = $death['killer_name'];
if($prevdate == $death['date'])
echo '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and by '.$name.'<br/>';
else
echo '<i>'.date("jS F Y H:i:s",$death['date']).'</i> Killed at level '.$death['victim_level'].' by '.$name.'<br/>';
$prevdate = $death['date'];
}
}
}
} catch(PlayerNotFoundException $e) {
echo 'Player not found';
} catch(PlayerException $e) {}
?>
</div>
<div class="bot"></div>
</div>
<?php include ("footer.inc.php");?>
 
Back
Top