Skip to main content
Metadata actions allow you to store and remove key-value pairs on players. This is useful for tracking custom statistics, preferences, or temporary states that LuckPerms can store persistently.

📋 Available Actions

Action IDDescription
set_meta_actionSets a meta key to a specific value.
unset_meta_actionRemoves a meta key from the player.

⚙️ Configuration

key
Var<String>
required
The name of the meta key.
value
Var<String>
The value to set (only for set_meta_action).

💻 Example Usage

# Set a custom meta tag for the player
set_meta_action:
  key: "voted_today"
  value: "true"