Conditional Tips
ModLGPL-2.1-only

Conditional Tips

An addon for the Tips mod that lets you show tips only under specific conditions.

65
Downloads
1
Followers
6 months ago
Updated
📦
3
Versions

📖About 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

  • Whitelist:
{
  "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."
  }
}
  • Blacklist:
{
  "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

  • Whitelist:
{
  "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."
  }
}
  • Blacklist:
{
  "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

  • AND
{
  "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."
  }
}
  • OR
{
  "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."
  }
}