Tags
Creators
Details
Licensed MIT
Published 3 weeks ago
Updated last month
All versions
1.0.0-beta.1
Beta
Simple Status Mod 1.0.0-beta.1last month 27
Compatibility
Minecraft: Java Edition
26.2
Platform
Fabric
Supported environments
Server-side
Singleplayer
Required content
Any compatible version
Changes
SimpleStatusMod 1.0.0-beta.1
✨ Features
- Added
/status <text>to set a custom player status /statusremoves the current status- Statuses are displayed in front of player nametags
- Statuses are displayed in the player tab list
- Statuses are displayed in chat
- Supports Minecraft color and formatting codes using
&- Example:
&6Gold,&5Purple,&lBold,&kgibberish
- Example:
- Statuses persist across server restarts and player reconnects
- Each player can have their own individual status
- Fully server-side - clients do not need SimpleStatusMod installed
💾 Storage
- Statuses are managed in memory using a
HashMap - Statuses are persistently stored in a JSON file at:
config/simplestatusmod/statuses.json - Statuses are loaded from the JSON file when the server starts
- Changes are saved automatically when a status is changed
⚠️ Beta
This is the first public beta release. The core functionality is implemented and tested, but bugs may still occur. Feedback and bug reports are welcome.
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:9HcY2HOD:WsMkg5Ta"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:9HcY2HOD:WsMkg5Ta"
}

