Tags
Creators
Details
1.0.0
Compatibility
Changes
G1axNameHistory
A lightweight, client-side Fabric mod that displays Minecraft player name history and UUIDs directly in chat.
⨠Features
Simple Commands
/igns <username>- View any player's name history/names <username>- Alternative command- Tab completion for online players
Beautiful Output
- Gradient-colored chat messages (cyan ā purple prefix)
- Gold/yellow gradient for current names
- Clickable UUIDs (click to copy)
- Clean, organized display with timestamps
Performance
- Smart caching system (1-hour TTL)
- Async API calls (no client freezing)
- LRU cache eviction (max 500 entries)
- Minimal resource usage
Reliability
- Automatic API fallback (Crafty.gg ā Mojang)
- Graceful error handling
- User-friendly error messages
- 10-second timeout per API call
š Requirements
- Minecraft: 1.21+
- Fabric Loader: 0.15.0+
- Fabric API: Required
- Java: 21
š® Usage
Simply type /igns <username> or /names <username> in chat to view a player's name history!
Example:
/igns Notch
Output:
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
G1axNameHistory: Player Info
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
Current IGN: Notch
UUID: 069a79f4-44e9-4726-a5be-fca90e38aaf5 [Copy]
Name History:
1. Notch (Current)
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
Source: crafty.gg | Cached: ā
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:AwA4mJY3:Wj8ymNET"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:AwA4mJY3:Wj8ymNET"
}

