#
Advancement Format
#
YAML File Structure
Each .yml file in the Advancements/ folder defines one tab. The file has three sections: tab, root, and advancements.
#
Full Structure
# ============================================
# Tab Configuration
# ============================================
tab:
namespace: "survival" # Unique ID, lowercase + underscores
root:
icon: "NETHER_STAR" # Material for the root icon
title: "&6Survival" # Tab display name (& for colors)
description: "Survival challenges"
background: "textures/block/stone.png"
# ============================================
# Advancements
# ============================================
advancements:
first_join:
title: "&aWelcome!"
description: "Join the server for the first time"
icon: NETHER_STAR
trigger: JOIN
hasReward: true
rewards:
- give %player% diamond 1
display:
x: 1.0
y: 4.0
frame: TASK
showToast: true
announceChat: false
showActionBar: true
sound:
enabled: true
type: UI.TOAST.CHALLENGE_COMPLETE
volume: 1.0
pitch: 1.0
money:
enabled: true
amount: 100.0
connection:
target: first_join
stone_breaker:
title: "Stone Breaker"
description: "Break 50 stone blocks"
icon: STONE_PICKAXE
trigger: BREAK_BLOCK
block: STONE
amount: 50
hasReward: true
rewards:
- give %player% iron_pickaxe 1
display:
x: 2.0
y: 4.0
frame: TASK
showToast: true
announceChat: false
showActionBar: true
connection:
target: first_join
#
Required Fields
#
Display Options
#
Sound
#
Trigger Configuration Fields
#
Custom Model Data
#
Connections & Dependencies
#
Conditions
#
Reward Fields
#
Tab System
#
Overview
Each .yml file in Advancements/ creates one tab in the Minecraft advancement menu (L key). Tabs are managed independently but share a global advancement ID pool.
#
Tab Rules
tab.namespacemust be unique across ALL files inAdvancements/- Advancement IDs (e.g.
first_join) must be unique GLOBALLY across all tabs - The tab display name is the
root.titlevalue (supports & color codes)
#
Available Background Textures
textures/block/stone.png
textures/block/cobblestone.png
textures/block/dirt.png
textures/block/oak_planks.png
textures/block/gold_block.png
textures/block/diamond_block.png
textures/block/emerald_block.png
textures/block/netherrack.png
textures/block/end_stone.png
textures/block/prismarine.png
textures/block/red_sand.png
textures/block/sandstone.png
Custom resource pack textures are also supported.
#
Creating a Tab
Via web editor: Run /padv editor, click "+" next to the tab dropdown, enter a namespace.
Manually: Create a new .yml file in the Advancements/ folder with the required tab, root, and advancements sections. Run /padv reload to apply.
Via in-game GUI: Not directly supported. Use the web editor or manual YAML editing.
#
Deleting a Tab
- Delete the
.ymlfile fromAdvancements/ - Run
/padv reload - Ensure no advancements reference IDs from the deleted tab