HomeJavaModsConditional Tips
Conditional Tips

Conditional Tips is an addon for the Tips mod. With this addon, you can define custom conditions for when a tip should appear.

Conditions

Dimensions

{
  "type": "conditional_tips:conditional_tip",
  "tip_conditions": [
    {
      "dimensions": [
        "minecraft:the_nether",
        "minecraft:the_end"
      ]
    }
  ],
  "tip": {
    "text": "This tip is only shown when you're in the nether or the end."
  }
}
{
  "type": "conditional_tips:conditional_tip",
  "tip_conditions": [
    {
      "excludeDimensions": [
        "minecraft:overworld"
      ]
    }
  ],
  "tip": {
    "text": "This tip is only shown when you're not in the overworld."
  }
}

Advancements

{
  "type": "conditional_tips:conditional_tip",
  "tip_conditions": [
    {
      "advancements": [
        "minecraft:story/lava_bucket"
      ]
    }
  ],
  "tip": {
    "text": "This tip is only shown when you had the \"Hot Stuff\" advancement."
  }
}
{
  "type": "conditional_tips:conditional_tip",
  "tip_conditions": [
    {
      "unachievedAdvancements": [
        "minecraft:story/lava_bucket"
      ]
    }
  ],
  "tip": {
    "text": "This tip is only shown when you don't have the \"Hot Stuff\" advancement yet."
  }
}

Multiple Conditions

{
  "type": "conditional_tips:conditional_tip",
  "tip_conditions": [
    {
      "dimensions": [
        "minecraft:the_nether"
      ],
      "advancements": [
        "minecraft:nether/root"
      ]
    }
  ],
  "tip": {
    "text": "This tip is only shown when you're in the nether and had the advancement."
  }
}
{
  "type": "conditional_tips:conditional_tip",
  "tip_conditions": [
    {
      "dimensions": [
        "minecraft:the_nether"
      ]
    },
    {
      "dimensions": [
        "minecraft:the_end"
      ]
    }
  ],
  "tip": {
    "text": "This tip is only shown when you're in the nether or the end."
  }
}
Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more