-
|
As of right now I'm trying to assign different GUIs to different villagers to achieve a personalised GUI for each trader in my server, I was just wondering if someone could take a look at this and help me out a little maybe? Thanks! {
"containers": "minecraft:villager",
"textures":
{
"textures/gui/container/villager2.png": "textures/gui/container/traders/trader_01.png"
},
"@screen":
{
"@title":
[
{
"@text": "The Guy"
}
]
}
} |
Beta Was this translation helpful? Give feedback.
Answered by
opekope2
Nov 15, 2025
Replies: 1 comment 2 replies
-
|
{
"containers": "minecraft:villager",
"textures": {
"textures/gui/container/villager.png": "textures/gui/container/traders/trader_01.png"
},
"match": {
"@screen": {
"@title": [
{
"@text": "The Guy"
}
]
}
}
}
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
opekope2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
villager2was renamed tovillagerdepending on your Minecraft version.You need to put
@screeninmatch:{ "containers": "minecraft:villager", "textures": { "textures/gui/container/villager.png": "textures/gui/container/traders/trader_01.png" }, "match": { "@screen": { "@title": [ { "@text": "The Guy" } ] } } }