{% if config.characters.outfit %}
{% endif %}
Character Information |
{% set rows = rows + 1 %}
Name: |
{{ flag|raw }} {{ player.getName() }}{{ oldName }} |
{% set rows = rows + 1 %}
Sex: |
{{ sex }} |
{% if marriage_enabled %}
{% set rows = rows + 1 %}
Marital status: |
{{ marital_status }} |
{% endif %}
{% set rows = rows + 1 %}
Profession: |
{{ vocation }} |
{% if config.characters.level %}
{% set rows = rows + 1 %}
Level: |
{{ player.getLevel() }} |
{% endif %}
{% if config.characters.experience %}
{% set rows = rows + 1 %}
Experience: |
{{ player.getExperience() }} |
{% endif %}
{% if config.characters.magic_level %}
{% set rows = rows + 1 %}
Magic Level: |
{{ player.getMagLevel() }} |
{% endif %}
{% if frags_enabled %}
{% set rows = rows + 1 %}
Frags: |
{{ frags_count }} |
{% endif %}
{% set rows = rows + 1 %}
Residence: |
{{ town }} |
{% if config.characters.balance %}
{% set rows = rows + 1 %}
Balance: |
{{ player.getBalance() }} Gold Coins. |
{% endif %}
{% if house.found %}
{% set rows = rows + 1 %}
House: |
{{ house.name ~ house.town ~ house.add }} |
|
|
{% endif %}
{% if guild.rank is not null %}
{% set rows = rows + 1 %}
Guild membership: |
{{ guild.rank }} of the {{ guild.link|raw }} |
{% endif %}
{% set rows = rows + 1 %}
Last login: |
{% if player.getLastLogin() == 0 %}Never logged in.{% else %}{{ player.getLastLogin()|date("M d Y, H:i:s") }} CEST{% endif %} |
{% if config.characters.creation_date %}
{% set rows = rows + 1 %}
Created: |
{{ player.getCreated()|date("M d Y, H:i:s") }} CEST |
{% endif %}
{% if comment is not null %}
{% set rows = rows + 1 %}
Comment: |
{{ comment|raw }} |
{% endif %}
{% set rows = rows + 1 %}
Account Status: |
{% if account.isPremium() %}Premium Account{% else %}Free Account{% endif %} |
{{ hook(constant('HOOK_CHARACTERS_AFTER_INFORMATIONS')) }}