Progress Advancements

Started by Block_BoyZ on

Topic category: Help with Minecraft modding (Java Edition)

Joined Feb 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Progress Advancements

I want to create an advancement that has a progress number, such as 5/10. Advancements like Hot Tourist Destination. after a little finiking, I was able to do this, kind of. I went into the code editor and just added more criteria, and this worked; however, it did not show any numbers on the advancement in the advancements screen. Is this possible? I've seen big mods do it, like biomes o' plenty.

 

Thanks!

{
  "display": {
    "icon": {
      "item": "minecraft:deepslate_bricks"
    },
    "title": {
      "translate": "advancements.test.title"
    },
    "description": {
      "translate": "advancements.test.descr"
    },
    "frame": "task",
    "show_toast": true,
    "announce_to_chat": true,
    "hidden": false
  },
  "criteria": {
    "test": {
      "trigger": "minecraft:consume_item",
      "conditions": {
        "item": {
          "items": [
            "minecraft:apple"
          ]
        }
      }
    }
  },
  "criteria": {
    "test": {
      "trigger": "minecraft:consume_item",
      "conditions": {
        "item": {
          "items": [
            "minecraft:golden_apple"
          ]
        }
      }
    }
  },
  "parent": "randomadditions:random_additions"
}
Joined Feb 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
So actually I lied and it…
Thu, 11/23/2023 - 20:25

So actually I lied and it did not work at all, and only took the first item. Does anyone have any idea on how this is done?