Underwaves please help me

Started by crispy_chips1234 on

Topic category: Help with MCreator software

Last seen on 03:10, 19. Feb 2022
Joined Jun 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Underwaves please help me

How do you make your own advancement background? bc I saw it in this mod:

https://mcreator.net/modification/50924/mineral-galore-tons-new-gems-and-metals

Last seen on 15:56, 8. Nov 2020
Joined Jan 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Yeah um, you have to dive in…
Mon, 12/09/2019 - 09:42

Yeah um, you have to dive in the code

Select your achievement, click "edit code", and go in the .json file

And the code inside should look like this:

{
  "display": {
    "background": "minecraft:textures/blocks/stone.png",
    "icon": {
      "item": "mineral_galore:cnsword"
    },
    "title": {
      "translate": "advancements.layer1root.title"
    },
    "description": {
      "translate": "advancements.layer1root.descr"
    },
    "frame": "task"
  },
  "criteria": {
    "layer1root": {
      "trigger": "layer1root"
    }
  }
}

Just look at the "background" line and edit the value to "<mod ID>:<texture file path>/<texture name>.png"

Example if I want my achievement have the Blue Spinel Ore texture ("snbore.png") :

"background": "mineral_galore:textures/blocks/snbore.png"

And don't forget to lock the achievement code or else it'll return to plain stone each time you try to edit it.

Datsol