2
Help with resource pack format
Hi
I´m trying to update a resource pack to 1.21.10, but In the pack slection list I keep getting the message "Broken or incompatible" (This is where the "Made for an older version" message usually appears).
This is what I have in the pack.mcmeta file:
{
"pack": {
"pack_format": 69.0,
"description": "§6Copper color shown on MC Live\n§eBy valesde_valley"
}
}
I quicly searched in the wiki and it says that 69.0 is the format for 1.21.9 - 1.21.10.
Am I doing something wrong or has anything about resource packs changed in the last versions?
I´m able to load and use the pack but I want to understand why I´m getting that message and how I can fix it.
Thanks in advance.
I´m trying to update a resource pack to 1.21.10, but In the pack slection list I keep getting the message "Broken or incompatible" (This is where the "Made for an older version" message usually appears).
This is what I have in the pack.mcmeta file:
{
"pack": {
"pack_format": 69.0,
"description": "§6Copper color shown on MC Live\n§eBy valesde_valley"
}
}
I quicly searched in the wiki and it says that 69.0 is the format for 1.21.9 - 1.21.10.
Am I doing something wrong or has anything about resource packs changed in the last versions?
I´m able to load and use the pack but I want to understand why I´m getting that message and how I can fix it.
Thanks in advance.
5
you've formatted the "pack_format" value wrong. it needs to be either an integer or an array of two integers. just get rid of the ".0" and it should work.
The wiki includes this useful note:
This article is missing information about: Data pack format tables are several weeks out of date
Hippopotamoss curates "Are you sure you want to load this pack?" | A Guide on Updating Your Resource Packs which provides example pack.mcmeta s the last of which is for 1.21.8 as of this posting.
The version given there for supporting both 1.21.8 & lower versions appears functionally identical to quasia's example.
If that format doesn't work, I'd download a 1.21.10 pack, check that it works, then copy the pack.mcmeta format from it. (Making a record of the format for future reference.) [Also please post the example here if this is needed.]
This article is missing information about: Data pack format tables are several weeks out of date
Hippopotamoss curates "Are you sure you want to load this pack?" | A Guide on Updating Your Resource Packs which provides example pack.mcmeta s the last of which is for 1.21.8 as of this posting.
The version given there for supporting both 1.21.8 & lower versions appears functionally identical to quasia's example.
If that format doesn't work, I'd download a 1.21.10 pack, check that it works, then copy the pack.mcmeta format from it. (Making a record of the format for future reference.) [Also please post the example here if this is needed.]
Just want to clarify that my guide does have two examples for 1.21.9 and above. One that just supports newer versions and one that supports 1.21.8 and below as well :)
It was written in an awkward way ("above 1.21.8") because 1.21.9 had not been announced then. So I've altered it to hopefully be a little clearer and state that they're for 1.21.9 and above
It was written in an awkward way ("above 1.21.8") because 1.21.9 had not been announced then. So I've altered it to hopefully be a little clearer and state that they're for 1.21.9 and above
i think you need supported_format value. try this
{
"pack": {
"pack_format": 34,
"supported_formats": [34, 69],
"min_format": [34, 0],
"max_format": [69, 0],
"description": "for 1.21 - 1.21.10"
}
}
hope this works
{
"pack": {
"pack_format": 34,
"supported_formats": [34, 69],
"min_format": [34, 0],
"max_format": [69, 0],
"description": "for 1.21 - 1.21.10"
}
}
hope this works
"supported_formats" is specifically for packs that A) support multiple game versions, and B) support game versions from 1.20.2 - 1.21.8. the field is not required to declare support for only one game version, nor is it used to declare support for 1.21.10.
