Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 588 Bytes

File metadata and controls

27 lines (20 loc) · 588 Bytes

Concept

The general concept of where we want to go to.

Text text = NText.of("im a text");

Text text = NText.of("im a text", VColor.MC_RED);

Text text = NText.of("im a text", "hover!");

Text text = NText.assemble()
        .text("im a text")
        .hover("with a hover effect")
        .clickCmd("/example")
        .color(VColor.MC_RED)
        .build();
Text text = NText.translation("block.minecraft.grass_block");

Text text = NText.assemble()
        .text(Type.TRANSLATION, "block.minecraft.grass_block")
        .clickCopy("test")
        .build();