Player Roles
Role & permission management for Fabric servers
Обновлён 21 июня 2026 г. · опубликован 17 декабря 2020 г.
Player Roles for Fabric
This is a simple implementation allowing for custom permissions to be assigned to players via Discord-like "roles". Roles and their permissions are defined within a JSON file, which can be easily modified and reloaded at runtime for rapid iteration.
The roles.json file is located in the config directory (<root>/config/roles.json). An example configuration may look like:
{
"admin": {
"level": 100,
"overrides": {
"name_decoration": {
"style": ["red", "bold"],
"suffix": {"text": "*"}
},
"permission_level": 4,
"command_feedback": true,
"commands": {
".*": "allow"
}
}
},
"spectator": {
"level": 10,
"overrides": {
"commands": {
"gamemode (spectator|adventure)": "allow"
}
}
},
"mute": {
"level": 1,
"overrides": {
"mute": true
}
},
"everyone": {
"overrides": {
"commands": {
"help": "allow",
".*": "deny"
}
}
}
}
But what's going on here? This JSON file is declaring three roles: admin, spectator and everyone.
everyone is the default role: every player will have this role, and it cannot be removed.
The other roles that are specified function as overrides on top of the everyone role.
Overrides
Within each role declaration, we list a set of overrides. Overrides are the generic system that this mod uses to change game behavior based on roles.
Currently, the supported override types are commands, name_decoration, chat_type, mute, command_feedback, permission_level and entity_selectors.
It is important to consider how overrides are applied when multiple roles target the same things. Conflicts like this are resolved by always choosing the role with the highest level.
So, in the case of the example: although everyone declares every command except help to be disallowed, because admin and spectator have higher levels, they will override this behaviour.
Commands
The commands override is used to manipulate the commands that a player is able to use.
Each override entry specifies a regular expression pattern to match, and then a strategy for how to respond when the mod encounters that pattern.
For example, the pattern .* matches every possible command, while gamemode (spectator|adventure) would match the gamemode command only with spectator and adventure mode.
The strategies that can then be used alongside these patterns are allow and deny:
allow will make sure that the player is allowed to use this command, while deny will prevent the player from using this command.
For example:
"commands": {
"gamemode (spectator|adventure)": "allow"
}
The commands override can additionally make use of the hidden rule result, which will allow the command to be used,
while hiding it from command suggestions.
Name Decoration
The name_decoration override modifies how the names of players with a role are displayed. This can be used to override name colors as well as prepend or append text.
This has lower priority than scoreboard team colors.
Name decoration might be declared like:
"name_decoration": {
"prefix": {"text": "[Prefix] ", "color": "green"},
"suffix": {"text": "-Suffix"},
"style": ["#ff0000", "bold", "underline"],
"contexts": ["chat", "tab_list"]
}
Three fields can be optionally declared:
style: accepts a list of text formatting types or hex colorsprefix: accepts a text component that is prepended before the namesuffix: accepts a text component that is appended after the namecontexts: accepts a set of possible contexts defining where this decoration should be applied- Accepts:
chatandtab_list - Default: applies to all possible contexts
- Accepts:
Chat Types
The chat_type override allows the chat message decorations to be replaced for all players with a role.
This integrates with the Vanilla minecraft:chat_type registry, which can be altered with a datapack.
The chat_type override declares simply the chat_type that should be used:
"chat_type": "minecraft:say_command"
This example will replace all messages for players with a given role to apply the say_command style.
It is important to note that Vanilla chat type registry is loaded from the datapack on server start, and cannot be hot-reloaded like the player roles config.
Declaring custom chat types
Custom chat types can be declared with a custom datapack in data/<namespace>/chat_type/<name>.
For example, we might declare a data/mydatapack/chat_type/admin.json:
{
"chat": {
"decoration": {
"parameters": ["sender", "content"],
"style": {},
"translation_key": "%s: %s <- an admin said this!"
}
},
"narration": {
"decoration": {
"parameters": ["sender", "content"],
"style": {},
"translation_key": "chat.type.text.narrate"
},
"priority": "chat"
}
}
Which can be then referenced in an override like:
"chat_type": "mydatapack:admin"
Permission Level
The permission_level override sets the vanilla permission level for assigned players.
This is useful for interacting with other mods, as well as with vanilla features that aren't supported by this mod.
Permission level is declared like:
"permission_level": 4
Mute
The mute override functions very simply by preventing assigned players from typing in chat.
Mute is declared like:
"mute": true
Command Feedback
By default, all operators receive global feedback when another player runs a command.
The command_feedback override allows specific roles to receive this same kind of feedback.
Command feedback is declared like:
"command_feedback": true
Entity Selectors
Normally, only command sources with a permission level of two or higher can use entity selectors.
The entity_selectors override allows specific roles to use entity selectors.
Entity selectors can be allowed like:
"entity_selectors": true
Other configuration
Roles can additionally be applied to command blocks or function executors through the configuration file. For example:
{
"commands": {
"apply": {
"command_block": true,
"function": true
},
"overrides": {
}
}
}
It may also be useful for a role to inherit the overrides from another role.
This can be done with the includes declaration by referencing other roles with a lower level.
For example:
{
"foo": {
"includes": ["bar"],
"overrides": {
"commands": {
".*": "allow"
}
}
},
"bar": {
"overrides": {
"name_decoration": {
"style": "red"
}
}
}
}
With this configuration, the foo role will inherit the red name_decoration.
Applying roles in-game
Once you've made modifications to the roles.json file, you can reload it by using the /role reload.
All role management goes through this role command via various subcommands. For example:
role assign Gegy admin: assigns theadminrole toGegyrole remove Gegy admin: removes theadminrole fromGegyrole list Gegy: lists all the roles that have been applied toGegyrole reload: reloads theroles.jsonconfiguration file
Версии
| Версия | Канал | Игра | Загрузчики | Дата | Скачать |
|---|---|---|---|---|---|
| 1.10.0+26.2 | Релиз | 26.2 | fabric | 21 июня 2026 г. | .jar (149 КБ) |
| 1.9.0+26.1.2 | Релиз | 26.1, 26.1.1, 26.1.2 | fabric | 23 мая 2026 г. | .jar (149 КБ) |
| 1.9.0-pre.1 | Бета | 26.1, 26.1.1, 26.1.2 | fabric | 31 марта 2026 г. | .jar (135 КБ) |
| 1.8.1+1.21.11 | Релиз | 1.21.8, 1.21.9, 1.21.10, 1.21.11 | fabric | 5 января 2026 г. | .jar (136 КБ) |
| 1.8.0+1.21.11 | Релиз | 1.21.8, 1.21.9, 1.21.10, 1.21.11 | fabric | 3 января 2026 г. | .jar (136 КБ) |
| 1.7.0+1.21.10 | Релиз | 1.21.7, 1.21.8, 1.21.9, 1.21.10 | fabric | 10 октября 2025 г. | .jar (137 КБ) |
| 1.6.15+1.21.6 | Релиз | 1.21.6, 1.21.7 | fabric | 23 июня 2025 г. | .jar (139 КБ) |
| 1.6.14+1.21.6 | Релиз | 1.21.6 | fabric | 22 июня 2025 г. | .jar (139 КБ) |
| 1.6.14+1.21.5 | Релиз | 1.21.5 | fabric | 29 апреля 2025 г. | .jar (139 КБ) |
| 1.6.13+1.21.5 | Релиз | 1.21.5 | fabric | 19 апреля 2025 г. | .jar (139 КБ) |
| 1.6.13+1.21.1 | Релиз | 1.21.1, 1.21.2, 1.21.3, 1.21.4 | fabric | 28 октября 2024 г. | .jar (138 КБ) |
| 1.6.12+1.21.1 | Релиз | 1.21.1 | fabric | 25 сентября 2024 г. | .jar (139 КБ) |
| 1.6.11+1.21 | Релиз | 1.21 | fabric | 19 июня 2024 г. | .jar (139 КБ) |
| 1.6.10+1.20.6 | Релиз | 1.20.6 | fabric | 8 июня 2024 г. | .jar (141 КБ) |
| 1.6.9+1.20.4 | Релиз | 1.20.4 | fabric | 8 июня 2024 г. | .jar (272 КБ) |
Показаны последние 15 из 35 версий. Все версии — на Modrinth.
Ченджлог
1.9.0+26.1.2Релиз26.1, 26.1.1, 26.1.2 · 23 мая 2026 г.
What's Changed
- Add support for Fabric Permission API
Full Changelog: https://github.com/NucleoidMC/player-roles/compare/v1.9.0-pre.1+26.1...v1.9.0+26.1.2
1.9.0-pre.1Бета26.1, 26.1.1, 26.1.2 · 31 марта 2026 г.
What's Changed
- Port to 26.1 by @cassiancc in https://github.com/NucleoidMC/player-roles/pull/118
New Contributors
- @cassiancc made their first contribution in https://github.com/NucleoidMC/player-roles/pull/118
Full Changelog: https://github.com/NucleoidMC/player-roles/compare/v1.8.1+1.21.11...v1.9.0-pre.1+26.1
1.8.1+1.21.11Релиз1.21.9, 1.21.10, 1.21.11 · 5 января 2026 г.
- Fix #115: invalid player data on 1.21.11
Full Changelog: https://github.com/NucleoidMC/player-roles/compare/v1.8.0+1.21.11...v1.8.1+1.21.11
1.8.0+1.21.11Релиз1.21.9, 1.21.10, 1.21.11 · 3 января 2026 г.
- Updated to Minecraft 1.21.11
Full Changelog: https://github.com/NucleoidMC/player-roles/compare/v1.7.0+1.21.10...v1.8.0+1.21.11
1.7.0+1.21.10Релиз1.21.8, 1.21.9, 1.21.10 · 10 октября 2025 г.
What's Changed
- Updated to Minecraft 1.21.10
Full Changelog: https://github.com/NucleoidMC/player-roles/compare/v1.6.15+1.21.6...v1.7.0+1.21.10
1.6.15+1.21.6Релиз1.21.6, 1.21.7 · 23 июня 2025 г.
1.6.14+1.21.6Релиз1.21.6 · 22 июня 2025 г.
What's Changed
- Update mod to Minecraft 1.21.6 by @haykam821 in https://github.com/NucleoidMC/player-roles/pull/106
Full Changelog: https://github.com/NucleoidMC/player-roles/compare/v1.6.14+1.21.5...v1.6.14+1.21.6
1.6.14+1.21.5Релиз1.21.5 · 29 апреля 2025 г.
What's Changed
- Fix online player roles being cleared when reloading roles by @haykam821 in https://github.com/NucleoidMC/player-roles/pull/104
Full Changelog: https://github.com/NucleoidMC/player-roles/compare/v1.6.13+1.21.5...v1.6.14+1.21.5
Полная история изменений — на Modrinth.
Комментарии
Загружаем…