πŸ“œCreate the mapping file

You need to create a file with whatever name you want with extension .json like this:

my_custom_armor.json

In the file you can add different option depending of what you want to change, you can see the options here.

We recommend you to use the options we are going to put as default. To start now you need to go to the folder of geysermc in your server, the path should be something like this:

my-server/plugins/Geyser-Spigot/custom_mappings there you need to create the file for your custom thing. If you DON'T have geysermc you should see how to install everything here.


In the custom mappings create the .json file and add the next code:

{
    "format_version": 1,
    "items": {
        "minecraft:the-minecraft-item-name": [
            {
                "name": "your_item_name",
                "custom_model_data": 10000,
                "display_name": "Β§eThe display name of you item",
                "is_tool": false,
                "is_hat": false,
                "texture_size": 16                
            }
        ]             
    }
}

In the first section you need to specify what type or item you're going to create, for that see the list here:

πŸ“‹List of mappings

Last updated

Was this helpful?