{% extends 'skins/master.twig' %} {% block content %}

Skins

Because our servers run in offline mode with our own authentication plugin, skins are downloaded from Mojang's servers. To make up for this we also have a client side mod that substitutes the skin and cape server with our own. You can find the mod on the downloads page. Please keep your textures clean.

Changing your Skin

Change your in-game appearance. You can change the model type of your skin by hitting upload without selecting a new image.

{% if error is defined and error.section == 'skin' %}

{{ error.message }}

{% endif %}
{% if skin is not null %}
{% endif %}
{% if skin_path is not null %}
Your skin
{% endif %}

Changing your Cape

Change your cape.

{% if error is defined and error.section == 'cape' %}

{{ error.message }}

{% endif %}
{% if cape is not null %}
{% endif %}
{% if cape_path is not null %}
Your cape
{% endif %}

Import from Mojang account

Import skin and cape textures from a Mojang Minecraft account. If you linked the same username as your actual Minecraft account, you can just press Import without anything.

{% endblock %}