Back to mods
MiniPlaceholders project artwork

Modrinth · Minecraft mod

MiniPlaceholders

MiniMessage Component-based Placeholders API for Minecraft Platforms

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which MiniPlaceholders release matches 23w31a Quilt?

Updated 4 months ago
Best match for your filters 2.2.1
Game version 1.19.3, 1.19.4, 1.20
Loader Fabric, Quilt

MiniPlaceholders 2.2.1 targets 1.19.3, 1.19.4, 1.20 with Fabric, Quilt. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.

Where it goes

Is MiniPlaceholders required on the client, server, or both?

The project page does not say whether this file belongs on the client, dedicated server, or both.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release Fabric, Quilt
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does MiniPlaceholders 2.2.1 need?

2.2.1 on 23w31a Quilt. Every mod below is checked against that same setup.

No extra mods listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

LuckPerms Optional for MiniPlaceholders 2.2.1
optional
No matching file

We only count dependency files that match this setup. A file for another loader does not fill the gap.

Before you install it

Add MiniPlaceholders without breaking your instance.

Built for MiniPlaceholders 2.2.1 on 23w31a Quilt. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use 2.2.1. It targets 1.19.3, 1.19.4, 1.20 with Fabric, Quilt; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside 2.2.1. It opens that exact file at the source.

About this project

What does MiniPlaceholders add?

MiniPlaceholders

WorkFlow
Latest Version
Discord
Modrinth Downloads
GitHub Downloads

MiniMessage Component-based Placeholders API for Minecraft Platforms

Compatibility

  • Paper 1.21+
  • Velocity 3.4.0+
  • Fabric 1.21.4+
  • Sponge API 12+

User Usage

Check our user usage wiki

API

Check the available Javadocs

Or check the Developer Wiki

Java

class Main {
    public static void registerExpansion() {
        final Expansion expansion = Expansion.builder("my-expansion")
                .audiencePlaceholder(Player.class, "name", (player, ctx, queue) -> {
                    return Tag.selfClosingInserting(player.getName());
                })
                .globalPlaceholder("tps", (ctx, queue) ->
                    Tag.selfClosingInserting(Component.text(Bukkit.getTps()[0]))
                ).build;
        
        expansion.register();
        
        Player player;
        final TagResolver playerResolver = MiniPlaceholders.audiencePlaceholders();
        player.sendMessage(miniMessage().deserialize("Player Name: <my-expansion_name>", player, playerResolver));
    }
}

Kotlin

fun register() {
    val expansion = expansion("my-expansion") {
        audience<Player>("name") { aud, _, _ -> aud.getName().asClosingTag() }
        global("tps") { _, _ -> Component.text(Bukkit.getTps()[0]).asInsertingTag() }
    }
    
    expansion.register()
    
    val player: Player
    val playerResolver = MiniPlaceholders.audiencePlaceholders()
    player.sendMessage(miniMessage().deserialize("Player Name: <my-expansion_name>", player, playerResolver))
}

Project description from Modrinth.

Pick your setup

MiniPlaceholders by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

140 available setups

Showing the newest 12 of 94 game versions. Older files are in the list below.

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

MiniPlaceholders versions and loaders

1 of 51 releases match
Clear filters

Looking for an older file? The official Modrinth project page is in Resources.