TitleInfo
๐ก Updated this year๐ผ๏ธ Gallery (1 images)
๐ Analysis
- ๐ #53 of 313 game-mechanics mods in this game by downloads
๐ About This Mod
# TitleInfo โ The Ultimate Navigation Suite ๐ !(https://cdn.modrinth.com/data/cached_images/44cbedc28e1bcdc10f8140d7ab2b274e9ad39552.png) <div style="background-color: #2d3436; padding: 25px; border-radius: 12px; text-align: center; border: 2px solid #0984e3;"> <h1 style="color: #74b9ff; margin: 0; font-size: 28px;">โจ Elevate Your Minecraft Experience โจ</h1> <p style="color: #dfe6e9; font-size: 16px; margin-top: 10px;"><b>Action Bars โข Waypoints โข Smart Sharing โข Developer API</b></p> </div> **TitleInfo** is a high-performance, lightweight utility designed to bridge the gap between immersion and information. By leveraging the Action Bar and a robust Waypoint system, it provides essential data without cluttering your chat or screen. Now featuring a **Full Developer API**, TitleInfo is the perfect foundation for survival servers, RPGs, and competitive factions that want to integrate coordinate and navigation data into their own systems. --- ## ๐ Core Features ### ๐ก Dynamic Action Bar Stop typing `/coords`. Keep your eyes on the world with real-time HUD elements: * **๐ Precision Tracking:** Coordinates (X, Y, Z) and Facing Direction. * **๐ World Data:** Current Biome and In-game/Real-world Time. * **๐ฉ Active Navigation:** Distance and direction to your selected Waypoint. * **โ๏ธ Toggleable:** Use `/ti display` to customize exactly what *you* see. ### ๐ Advanced Waypoint System * **Set & Forget:** Create waypoints at your feet or specific coordinates. * **Smart HUD:** Select a waypoint to see a live distance tracker in your action bar. * **Cross-World Support:** Track locations across dimensions with ease. ### โ๏ธ Seamless Coordinate Sharing * **Global/Private:** Share your location with the whole server or a specific friend. * **One-Click Waypoints:** Recipients can instantly save shared coordinates as their own waypoints. ### ๐ ๏ธ Administrative Control * **Player Support:** Set or remove waypoints for players remotely. * **UI Management:** Force-toggle display options for specific players or ranks. --- ## ๐ป Developer API TitleInfo now exposes a powerful API for other plugin developers to hook into the navigation flow. ### ๐ Quick Start Add the **TitleInfo.jar** to your project dependencies and access the API via the provider: > TitleInfoApi api = TitleInfoApiProvider.get(); <br> ### ๐ Example: Setting a Waypoint You can update or create waypoints for any player. It is recommended to use the **Async** methods to keep your main thread healthy: > UUID playerId = player.getUniqueId(); <br> > Location loc = player.getLocation(); <br> > <br> > // Set a waypoint asynchronously <br> > api.upsertWaypointAsync(playerId, "Home Base", loc).thenAccept(success -> { <br> > if (success) { <br> > player.sendMessage("Waypoint synchronized!"); <br> > } <br> > }); <br> ### ๐ก Example: Listening for Events Hook into user actions to add custom logic, such as blacklisting certain names: > @EventHandler <br> > public void onWaypointSet(TitleInfoWaypointSetEvent event) { <br> > // Prevent players from naming waypoints "Spawn" <br> > if (event.getWaypointName().equalsIgnoreCase("Spawn")) { <br> > event.setCancelled(true); <br> > event.getPlayer().sendMessage("That waypoint name is reserved!"); <br> > } <br> > } <br> --- ## ๐จ Commands & Permissions | Command | Description | Permission | | :--- | :--- | :--- | | `/ti display <type>` | Toggle specific HUD elements | `titleinfo.display` | | `/ti share ` | Share your current location | `titleinfo.share` | | `/ti waypoint <set/list>` | Manage your personal waypoints | `titleinfo.waypoint` | | `/ti admin <args>` | Administrative overrides | `titleinfo.admin` | --- ## ๐ Installation & Tech Specs 1. **Download** the latest release. 2. **Drop** into your `/plugins` folder. 3. **Restart** and enjoy! * **โ Compatibility:** Minecraft 1.13 - 1.21.x+ * **๐ฆ Dependencies:** None (Standalone), but supports **Adventure API** for rich text. --- <p style="text-align: center; color: #636e72;"> <i>Developed with โค๏ธ by <b>RRS</b></i><br> </p>
# TitleInfo โ The Ultimate Navigation Suite ๐
!(https://cdn.modrinth.com/data/cached_images/44cbedc28e1bcdc10f8140d7ab2b274e9ad39552.png)
โจ Elevate Your Minecraft Experience โจ
Action Bars โข Waypoints โข Smart Sharing โข Developer API
TitleInfo is a high-performance, lightweight utility designed to bridge the gap between immersion and information. By leveraging the Action Bar and a robust Waypoint system, it provides essential data without cluttering your chat or screen.
Now featuring a Full Developer API, TitleInfo is the perfect foundation for survival servers, RPGs, and competitive factions that want to integrate coordinate and navigation data into their own systems.
## ๐ Core Features
### ๐ก Dynamic Action Bar Stop typing `/coords`. Keep your eyes on the world with real-time HUD elements: ๐ Precision Tracking: Coordinates (X, Y, Z) and Facing Direction. ๐ World Data: Current Biome and In-game/Real-world Time. ๐ฉ Active Navigation: Distance and direction to your selected Waypoint. โ๏ธ Toggleable: Use `/ti display` to customize exactly what you see.
### ๐ Advanced Waypoint System Set & Forget: Create waypoints at your feet or specific coordinates. Smart HUD: Select a waypoint to see a live distance tracker in your action bar. Cross-World Support: Track locations across dimensions with ease.
### โ๏ธ Seamless Coordinate Sharing Global/Private: Share your location with the whole server or a specific friend. One-Click Waypoints: Recipients can instantly save shared coordinates as their own waypoints.
### ๐ ๏ธ Administrative Control Player Support: Set or remove waypoints for players remotely. UI Management: Force-toggle display options for specific players or ranks.
## ๐ป Developer API TitleInfo now exposes a powerful API for other plugin developers to hook into the navigation flow.
### ๐ Quick Start Add the TitleInfo.jar to your project dependencies and access the API via the provider:
> TitleInfoApi api = TitleInfoApiProvider.get();
### ๐ Example: Setting a Waypoint You can update or create waypoints for any player. It is recommended to use the Async methods to keep your main thread healthy:
> UUID playerId = player.getUniqueId();
> Location loc = player.getLocation();
> // Set a waypoint asynchronously
> api.upsertWaypointAsync(playerId, "Home Base", loc).thenAccept(success -> {
> if (success) {
> player.sendMessage("Waypoint synchronized!");
> }
### ๐ก Example: Listening for Events Hook into user actions to add custom logic, such as blacklisting certain names:
> @EventHandler
> public void onWaypointSet(TitleInfoWaypointSetEvent event) {
> // Prevent players from naming waypoints "Spawn"
> if (event.getWaypointName().equalsIgnoreCase("Spawn")) {
> event.setCancelled(true);
> event.getPlayer().sendMessage("That waypoint name is reserved!");
> }
## ๐จ Commands & Permissions
| Command | Description | Permission |
| :--- | :--- | :--- |
| `/ti display
## ๐ Installation & Tech Specs 1. Download the latest release. 2. Drop into your `/plugins` folder. 3. Restart and enjoy!
โ Compatibility: Minecraft 1. 13 - 1. 21.x+ * ๐ฆ Dependencies: None (Standalone), but supports Adventure API for rich text.
Developed with โค๏ธ by RRS
๐ Mod Details
- Game
- Minecraft Plugins
- Author
- RRS
- Version
- 26.3
- Downloads
- 303
- Endorsements
- 1
- Category
- game-mechanics
- Created
- 3/27/2025
- Updated
- 4/29/2026
- Game Versions
- 1.13, 1.13.1, 1.13.2, 1.14, 1.14.1
- Tags
- game-mechanics, management, 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 TitleInfo support?
The author lists 1.13, 1.13.1, 1.13.2, 1.14, 1.14.1, 1.14.2. Other versions may work but are untested by the author.
What is the latest version of TitleInfo?
Version 26.3, published 2026-04-29 with 303 downloads recorded at the source.
Keep browsing โ more Minecraft Plugins mods await
