An addon for the Tips mod that lets you show tips only under specific conditions.
Conditional Tips is an addon for the Tips mod. With this addon, you can define custom conditions for when a tip should appear.
{
"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."
}
}
{
"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."
}
}
{
"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."
}
}