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 should I use?

Updated 4 months ago
Latest stable file 3.2.0
Game version 26.1
Loader Fabric, Quilt

MiniPlaceholders 3.2.0 targets 26.1 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 3.2.0 need?

3.2.0. Change the file and its required mods may change too.

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.

This file does not list any required or optional mods.

Before you install it

Add MiniPlaceholders without breaking your instance.

Built for MiniPlaceholders 3.2.0. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use 3.2.0. It targets 26.1 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 3.2.0. 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

51 of 51 releases match

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