Skip to content

Watermark

Warning

Not available in LabyMod 4! Only available for LabyMod users with version greater than 3.7.0

Overview

This feature will show a LabyMod banner in the bottom right corner. It was made for LabyMod tournaments. A special feature of this watermark is that the server can force an emote to the player without changing the UUID. In addition, the table list gets a new design, matching the scoreboard settings.

watermark

Requirements

Example code

public void sendWatermark( Player player, boolean visible ) {
    JsonObject object = new JsonObject();

    // Visibility
    object.addProperty( "visible", visible );

    // Send to LabyMod using the API
    LabyModProtocol.sendLabyModMessage( player, "watermark", object );
}