-
Notifications
You must be signed in to change notification settings - Fork 2
Compatibility
Preston edited this page Aug 5, 2022
·
1 revision
It is possible for custom Figura avatar scripts to hide Mermod's tails. To do so, add the following code to the top of your script:
if mermod_tail then
mermod_tail.setDisabled(true)
end
Mermod's tails can also be added as a power to custom Origins without the need for a necklace.
If you want to make a custom origin, please refer to the official documentation before proceeding.
First, create a custom power with the type mermod:tail_style
using the following format:
{
"type": "mermod:tail_style",
"name": "Tutorial Mermaid Tail",
"description": "This is a custom power!",
"tailColor": 16777215,
"hasBra": false,
"braColor": 16777215,
"hasGradient": false,
"gradientColor": 16777215,
"hasGlint": false,
"texture": "mermod:textures/tail/tail.png"
}
Then, add the power to your origin's JSON file:
{
"powers": [
"my_datapack:my_tail_power"
],
"icon": "minecraft:kelp",
"order": 99,
"impact": 1,
"name": "Tutorial Mermaid",
"description": "This is a custom origin!"
}
Be sure to replace my_datapack
and my_tail_power
with your own datapack and power file names. When creating a custom tail style power, please keep in mind the following:
- If you decide to use a custom tail texture, you will need to create a resource pack so other players can see it.
- Colors should be in decimal format. I recommend this website for picking decimal colors.