{% extends 'admin/custom_base.html' %} {% block body %}

Custom Avatar Items

Register new avatar items added to the backend DLL. These are added to the item pool alongside the base game items.

{% if error %}
{{ error }}
{% endif %} {% if success %}
{{ success }}
{% endif %} {% if SCOPE_ADMIN in scopes %}
+ Add New Avatar Item
Unique identifier matching the DLL.
Unlocked for all new players at level 1.
{% endif %}
Registered Custom Items {{ custom_items|length }}
{% if SCOPE_ADMIN in scopes %}{% endif %} {% if not custom_items %} {% else %} {% for item in custom_items %} {% set item_guid = item.AvatarItemDesc.split(',')[0] %} {% if SCOPE_ADMIN in scopes %} {% endif %} {% endfor %} {% endif %}
Friendly Name Item ID (AvatarItemDesc) Default / StarterActions
No custom items registered yet.
{{ item.FriendlyName }} {{ item.AvatarItemDesc }} {% if item.get('Starter', false) %} Default {% else %} No {% endif %}
{% endblock %}