My account
Welcome to your account page, {{ account }}
{% if config.lua.freePremium %}
You have unlimited Premium Account.
{% else %}
{% set premiumDays = account_logged.getPremDays() %}
{% if premiumDays == 0 %}
You don't have Premium Account
{% else %}
You have {{ premiumDays }} days remaining Premium Account.
{% endif %}
{% endif %}
{# if account dont have recovery key show hint #}
{% if recovery_key is empty %}
You can register your account for increased protection. Click on "Register Account" and get your free recovery key today!
{% endif %}
{% if email_request %}
A request has been submitted to change the email address of this account to {{ email_new }}. After {{ email_new_time|date("j F Y, G:i:s") }} you can accept the new email address and finish the process. Please cancel the request if you do not want your email address to be changed! Also cancel the request if you have no access to the new email address!
{% endif %}
General Information
{% if not config.account_login_by_email or config.account_login_by_email_fallback %}
Account {% if constant('USE_ACCOUNT_NAME') %}Name{% else %}Number{% endif %}: |
{{ account }} |
{% endif %}
Email Address: |
{{ account_email ~ email_change }}
|
Created: |
{{ account_created|date("j F Y, G:i:s") }} |
Last Login: |
{{ "now"|date("j F Y, G:i:s") }} |
{% autoescape false %}
Account Status: |
{{ account_status }} |
Registered: |
{{ account_registered }} |
{% endautoescape %}
Public Information
Real name: |
{{ account_rlname }} |
Location: |
{{ account_location }} |
Action Log
Action | Date | IP |
{% autoescape false %}
{% set i = 0 %}
{% for action in actions %}
{% set i = i + 1 %}
{{ action.action }} |
{{ action.date|date("jS F Y H:i:s") }} |
{{ action.ip }} |
{% endfor %}
{% endautoescape %}
Character list: {{ players|length }} characters.
Name | Level | Vocation | Town | Last login | Status | Hide | Edit |
{% set i = 0 %}
{% for player in players %}
{% set i = i + 1 %}
{{ player.getName() }}
|
{{ player.getLevel() }} |
{{ player.getVocationName() }} |
{{ config.towns[player.getTownId()] }} |
{% if player.getLastLogin() > 0 %}{{ player.getLastLogin|date('d F Y (H:i)') }}{% else %}Never.{% endif %} |
{% if player.isOnline() %}ONLINE{% else %}Offline{% endif %} |
{% if player.isHidden() %}Hidden{% else %}Visible{% endif %} |
{% if not player.isDeleted() %}[Edit]{% endif %} |
{% endfor %}
|
{% if setting('core.account_change_character_name') %}
|
{% endif %}
{% if setting('core.account_change_character_sex') %}
|
{% endif %}
|