HomeJavaModsTitleInfo
TitleInfo
TitleInfo — screenshot 1

TitleInfo — The Ultimate Navigation Suite 🚀

Image Preview

✨ 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:

📍 Advanced Waypoint System

✉️ Seamless Coordinate Sharing

🛠️ Administrative Control


💻 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 <type> Toggle specific HUD elements titleinfo.display
/ti share [player] 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!

Developed with ❤️ by RRS

Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more