Tags
Creators
Details
1.5-Forge-1.8.9
Compatibility
Changes
Textmod 1.5 for forge 1.8.9
Going opensource!
Textmod's source code is now available on codeberg
I decided to publish it to codeberg instead of github due to various reasons. But if anyone requests the code to also be transfered to github, it shouldnt be a problem. You can request that by opening an issue on codeberg or messaging me on my discord server
This update introduces placeholders!
Placeholders are a way to get various player data and render them.
Placeholder info
There are only a couple of placeholders available, however, if you wish to add your own, the best way is to modify the source. Another way by contacting me on discord, or opening an issue, i will gladly implement your ideas!
- {coordX} - Displays your X coordinate
- {coordY} - Displays your Y coordinate
- {coordZ} - Displays your Z coordinate
- {health} - Displays your current health level
- {name} - Displays the player name
- {maxHealth} - Displays your maximum health
- {saturation} - Displays your current saturation
- {hunger} - Displays your current hunger level
- {heldItemName} - Displays the name of your current held item
- {score} - Displays your current score
- {hour} - Displays the current hour based on your local time
- {minute} - Displays the current minute based on your local time
- {second} - Displays the current second based on your local time
Example usage to configure textmod to display the current time:
/textmod text {hour}:{minute}:{second}
Which would look like HH:MM:SS.
The time placeholders are independent on each other.
Will this update be available for fabric and newer versions?
Im not sure if i will be adding support for new versions any time soon. Im more likely to if more people request it on my discord server
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:EdDhH2HS:UZACHI74"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:EdDhH2HS:UZACHI74"
}

