InlineHeads

⭐ — (2 endorsements) 📥 408 downloads 📌 v1.1.1 📅 4/20/2025
🟠 Updated over a year ago

By BlameBert · decoration

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 4/30/2025 📅 Created: 4/20/2025

🔍 Analysis

  • 🏆 #65 of 81 decoration mods in this game by downloads

📋 About This Mod

# InlineHeads (https://jitpack.io/v/BertTowne/InlineHeads.svg)](https://jitpack.io/#BertTowne/InlineHeads) !(https://img.shields.io/github/repo-size/BertTowne/InlineHeads) !(https://img.shields.io/github/issues-raw/BertTowne/InlineHeads) !(https://img.shields.io/codefactor/grade/github/BertTowne/InlineHeads) --- ## Requirements - Java 21+ - Paper or Folia 1.21.4+ **WARNING:** This plugin REQUIRES a resource pack to be installed on the client. If the resource pack is not installed, the client will not be able to connect to the server. With the default configuration the resource pack will be automatically downloaded, but it can also be found (https://github.com/BertTowne/Pixelized) for more advanced users. --- ## Description InlineHeads simply enables the use of player heads in chat or anywhere else that supports text components, such as scoreboards, action bars, and titles. Here is an example of how it looks in chat: !(https://i.gyazo.com/2d4a9e4fc810b5d4991e42a72a1fed78.png) See that head next to my name? That's my capybara skin's head, in full resolution, in a single line of chat. --- ## Getting Started (Server Admins) This plugin will not provide any functionality without the use of (https://modrinth.com/plugin/miniplaceholders). Install MiniPlaceholders and InlineHeads by placing the jar files in your server's plugins folder and restarting the server. To use a player's head in text, use the following placeholder format: `<player_head:>`, where `` is the name of the player whose head you want to display. For example, to display my head like in the image above, you would use `<player_head:BlameBert>`. The plugin will automatically download the resource pack and install it for you. The resource pack is compatible for use with other server-enforced resource packs, so you can use InlineHeads alongside other plugins that require a resource pack. --- ## Getting Started (Developers) ### Maven Users: Repository: ```xml <repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> ``` Dependency: ```xml <dependency> <groupId>com.github.BertTowne</groupId> <artifactId>InlineHeads</artifactId> <version>v1.1.1</version> </dependency> ``` ### Gradle Users: Repository: ```groovy dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { mavenCentral() maven { url 'https://jitpack.io' } } } ``` Dependency: ```groovy dependencies { implementation 'com.github.BertTowne:InlineHeads:v1.1.1' } ``` InlineHeads uses Google's (https://github.com/google/guice) dependency injection system so to get an instance of the InlineHeadsService, you can place the following code where you define your class variables: ```java @Inject private InlineHeadsService inlineHeadsService; ``` Then you can use the service to get a Component that contains a player's head: ```java Component head = inlineHeadsService.getHead(playerName); ``` **WARNING:** This method accesses the Minotar API, so it is recommended to use it sparingly and MUST BE DONE ASYNCHRONOUSLY to avoid blocking the main thread. The images retrieved from the Minotar API are cached for 10 minutes after their last time being accessed, so if you need to get the same head multiple times, it will not make multiple requests to the API. --- ## How does it work? InlineHeads uses a couple of custom fonts to achieve this effect: - (https://github.com/BertTowne/Pixelized), a font created by me specifically for this plugin that provides the individual pixels required to render the heads. - (https://github.com/AmberWat/NegativeSpaceFont), a font created by AmberWat that provides the spacing required to organize the pixels into player heads. While the plugin places the pixels in the correct order, it colors them based on the player's skin according to the (https://minotar.net/). ---

# InlineHeads

[!(https://jitpack.io/v/BertTowne/InlineHeads.svg)](https://jitpack.io/#BertTowne/InlineHeads) !(https://img.shields.io/github/repo-size/BertTowne/InlineHeads) !(https://img.shields.io/github/issues-raw/BertTowne/InlineHeads) !(https://img.shields.io/codefactor/grade/github/BertTowne/InlineHeads) --- ## Requirements - Java 21+ - Paper or Folia 1. 21. 4+

WARNING: This plugin REQUIRES a resource pack to be installed on the client. If the resource pack is not installed, the client will not be able to connect to the server. With the default configuration the resource pack will be automatically downloaded, but it can also be found (https://github.com/BertTowne/Pixelized) for more advanced users.

## Description

InlineHeads simply enables the use of player heads in chat or anywhere else that supports text components, such as scoreboards, action bars, and titles.

Here is an example of how it looks in chat:

![](https://i.gyazo.com/2d4a9e4fc810b5d4991e42a72a1fed78.png)

See that head next to my name? That's my capybara skin's head, in full resolution, in a single line of chat.

## Getting Started (Server Admins)

This plugin will not provide any functionality without the use of (https://modrinth.com/plugin/miniplaceholders). Install MiniPlaceholders and InlineHeads by placing the jar files in your server's plugins folder and restarting the server.

To use a player's head in text, use the following placeholder format: ``, where `` is the name of the player whose head you want to display. For example, to display my head like in the image above, you would use ``.

The plugin will automatically download the resource pack and install it for you. The resource pack is compatible for use with other server-enforced resource packs, so you can use InlineHeads alongside other plugins that require a resource pack.

## Getting Started (Developers)

### Maven Users: Repository: ```xml jitpack.io https://jitpack.io ```

Dependency: ```xml com.github. BertTowne InlineHeads v1. 1. 1 ```

### Gradle Users: Repository: ```groovy dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode. FAIL_ON_PROJECT_REPOS) repositories { mavenCentral() maven { url 'https://jitpack.io' } } } ```

Dependency: ```groovy dependencies { implementation 'com.github. BertTowne:InlineHeads:v1. 1. 1' } ```

InlineHeads uses Google's (https://github.com/google/guice) dependency injection system so to get an instance of the InlineHeadsService, you can place the following code where you define your class variables: ```java @Inject private InlineHeadsService inlineHeadsService; ```

Then you can use the service to get a Component that contains a player's head: ```java Component head = inlineHeadsService.getHead(playerName); ``` WARNING: This method accesses the Minotar API, so it is recommended to use it sparingly and MUST BE DONE ASYNCHRONOUSLY to avoid blocking the main thread.

The images retrieved from the Minotar API are cached for 10 minutes after their last time being accessed, so if you need to get the same head multiple times, it will not make multiple requests to the API.

## How does it work?

InlineHeads uses a couple of custom fonts to achieve this effect: - (https://github.com/BertTowne/Pixelized), a font created by me specifically for this plugin that provides the individual pixels required to render the heads. - (https://github.com/AmberWat/NegativeSpaceFont), a font created by AmberWat that provides the spacing required to organize the pixels into player heads.

While the plugin places the pixels in the correct order, it colors them based on the player's skin according to the (https://minotar.net/).

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Plugins
Author
BlameBert
Version
1.1.1
Downloads
408
Endorsements
2
Category
decoration
Created
4/20/2025
Updated
4/30/2025
Game Versions
1.21.4, 1.21.5
Tags
decoration, library, utility

🔧 How to Install Minecraft Plugins Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Plugins →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Plugins versions does InlineHeads support?

The author lists 1.21.4, 1.21.5. Other versions may work but are untested by the author.

What is the latest version of InlineHeads?

Version 1.1.1, published 2025-04-30 with 408 downloads recorded at the source.

Keep browsing — more Minecraft Plugins mods await

📋 All Minecraft Plugins Mods 🏆 Top 25 📂 More decoration 👤 More by BlameBert 🔎 Similar Mods 🌐 Best decoration (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods