Skip to content

Files

Latest commit

eb47256 · Jul 20, 2022

History

History

server

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 19, 2022
May 21, 2022
Jul 20, 2022

Simple server

This is a SimpleHTTP based server for OpenMCSkins. It has an API similar to ely.by API. You can use the server directory as local storage instead of running it because it has the same filesystem structure as the local skins store.

The directory structure of the server (and local storage) looks like this:

  • textures
    • skin
      • [PLAYER NAME].png
    • cape
      • [PLAYER NAME].png
    • ears
      • [PLAYER NAME].png
  • metadata (OPTIONAL)
    • skin
      • [PLAYER NAME].json
    • cape
      • [PLAYER NAME].json

Skin metadata is a JSON file, that contains skin model name

Example skin metadata for a skin with a slim model:

you shouldn't use metadata for the default skin model, it works without it anyway

{
  "model": "slim"
}

Example animated cape metadata

{
  "animated": true
}