<%= player.display_name.charAt(0).toUpperCase() %>
<%= player.display_name %>
<%= player.uuid %>
<% if (player.isOnline) { %>
En ligne
<% } else { %>
Hors ligne
<% } %>
- Niveau
- <%= player.level %>
- Expérience
- <%= fmt.formatNumber(player.experience) %>
- Classe
- <%= player.classLabel %>
- Race
- <%= player.raceLabel %>
- Money
- <%= fmt.formatMoney(player.money) %>
- Temps de jeu
- <%= fmt.formatDuration(player.total_time_play) %>
- Création du compte
- <%= fmt.formatTimestamp(player.date_creation || player.created_at) %>
- Dernière connexion
- <%= fmt.formatTimestamp(player.last_date_connected) %>
<% if (player.jobs.length > 0) { %>
Métiers
<% player.jobs.forEach(function(job) { %>
<%= job %>
<% }); %>
<% } %>
<% if (player.powers.length > 0) { %>
Pouvoirs
<% player.powers.forEach(function(power) { %>
<%= power %>
<% }); %>
<% } %>
<% if (group) { %>
Membre du groupe <%= group.id %>
<% } %>
<% if (typeof comingSoon !== 'undefined' && comingSoon) { %>