Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Player Database
  • Skin Browser
  • Cape Gallery
  • Community Hub
  • Seed Vault

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Takion
PluginGPL-3.0-only

Takion

Takion is a powerful Spigot library for advanced chat, text formatting, and messaging utilities in Minecraft plugins.

322
Downloads
0
Followers
8 months ago
Updated
📦
4
Versions
librarymanagementsocialbukkitfoliapaperpurpurspigot
Download Latestv1.3View on Modrinth

📖About Takion

Discord

Takion

Takion is a comprehensive Spigot library designed to streamline the development of text and chat-related plugins for Minecraft servers. It provides a robust set of tools and utilities to manage messaging, logging, placeholder replacement, and more, making it an essential core for enhancing chat interactions within Minecraft.

Purpose

Takion aims to simplify the creation and management of chat-based functionalities in Minecraft plugins. It serves as a foundational library that developers can leverage to implement advanced text and chat features efficiently.

Features

Logging

  • TakionLogger: Provides advanced logging capabilities with dynamic message formatting, colorization, and integration with external APIs (e.g., Paper and Prismatic).
  • Supports both server-level and plugin-specific logs.

Channel Management

  • ChannelManager: Manages communication channels, defining and identifying different channels for player interactions.

Title Management

  • TitleManager: Configures and displays titles to players, with customizable fade-in, stay, and fade-out durations.

Placeholder Management

  • PlaceholderManager: Dynamically replaces tokens in messages with actual values, facilitating personalized and context-aware messaging.

Character Management

  • CharacterManager: Handles text alignment and formatting, including support for small capital conversions and custom character lengths.

Messaging

  • MessageSender: Sends formatted messages to players, with support for placeholders and advanced text processing.

Text Processing

  • Utilizes PrismaticAPI, StringApplier, and related utilities for colorization and string modifications, enabling rich text formatting.

Installation

Maven

To include Takion in your project, add the following repository and dependency to your pom.xml:

<repositories>
    <repository>
        <id>croabeast-repo</id>
        <url>https://croabeast.github.io/repo/</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>me.croabeast</groupId>
        <artifactId>Takion</artifactId>
        <version>1.2</version>
    </dependency>

    <!-- If you want a shaded version with all its dependencies compiled, select this -->
    <dependency>
        <groupId>me.croabeast</groupId>
        <artifactId>Takion-shaded</artifactId> 
        <version>1.2</version>
        <exclusions>
            <exclusion>
                <groupId>*</groupId>
                <artifactId>*</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
</dependencies>

Gradle

To include Takion in your project, add the following to your build.gradle:

repositories {
    maven {
        url 'https://croabeast.github.io/repo/'
    }
}

dependencies {
    implementation 'me.croabeast:Takion:1.2'
    // If you want a shaded version with all its dependencies compiled, select this
    implementation 'me.croabeast:Takion-shaded:1.2'
}

Usage

Initialization

Initialize TakionLib in your plugin's onEnable method:

@Override
public void onEnable() {
    TakionLib lib = new TakionLib(this);
    // Additional initialization code...
}

Sending Messages

Send a message to a player:

lib.getLoadedSender().addPlaceholder("{player}", player.getName())
    .send("Hello, {player}! Welcome to our server.");

Displaying Titles

Format a title and send it to a player:

lib.getTitleManager().builder("Welcome", "Enjoy your stay!").send(player);

Character Management

Use the CharacterManager to manage text alignment and formatting:

String alignedText = lib.getCharacterManager().align("Centered Text");
player.sendMessage(alignedText);

CollectionBuilder

Example of using CollectionBuilder:

List<String> list = CollectionBuilder.of("Item1", "Item2", "Item3").toList();
player.sendMessage(String.join(", ", list));

Dependencies

Takion includes several dependencies that are included within the library (compiled in the shaded version), so you don't need to add them separately. The primary dependencies are:

  • PrismaticAPI: For colorization and text modifications.
  • CommandFramework: For handling commands.
  • AdvancementInfo: For handling advancement information.
  • YAML-API: For YAML configuration support.
  • InventoryFramework: For managing and interacting with Minecraft inventories.

    Note: UpdateChecker was originally created by Choco. For more details, see this post.

Optional Dependencies

While the following dependencies are optional and provided, they are not required for the core functionality of Takion:

  • VaultAPI: For integrating with external permission and chat APIs.
  • InteractiveChat: For enhancing chat interactions.

Contributing

Contributions are welcome! Please fork the repository and submit pull requests with your changes. For major changes, please open an issue first to discuss what you would like to change.

License

This project is licensed under the GNU General Public License v3.0. See the LICENSE file for details.

👥 Team & Contributors

CroaBeast
CroaBeastOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
bukkitfoliapaperpurpurspigot
Minecraft Versions
1.81.8.11.8.21.8.31.8.41.8.51.8.61.8.7+59 more

🔗 Links

Modrinth Page