Compatibility
Minecraft: Java Edition
1.20.1
Platforms
Supported environments
Client-side
Links
Tags
Creators
Details
Licensed LGPL-2.1-only
Published 8 months ago
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."
}
}


