Add support prefix, suffix, and color for OpenMod/Unturned!
Run command openmod install DiFFoZ.PermissionExtensions
. After installing reload openmod or restart the server.
Open the file openmod.roles.yaml
. You would see new data appeared in all roles (color
, prefix
, and suffix
).
- Color: you can see about it here. Example:
color: Blue
- Prefix: adds a prefix to the nickname at the start. Example:
prefix: "[Police] "
- Suffix: adds a suffix to the nickname at the end. Example:
suffix: " [IV]"
Example how will be look openmod.roles.yaml
:
roles:
- id: policeBase
priority: 0
parents:
- default
permissions:
- CuffPlugin:commands.cuff
- Kits:kits.policeWeapon
- Kits:kits.policeClothes
displayName: PoliceBase
data:
color: "#5061cf"
prefix: "[Police] "
suffix: ""
isAutoAssigned: false
- id: police
priority: 5
parents:
- policeBase
permissions:
- !Kits:kits.policeClothes
- Kits:kits.policeClothesIV
- Kits:kits.policeIV
displayName: Major
data:
color: Blue
prefix: "[Police] "
suffix: " [IV]"
isAutoAssigned: false
...
At the end nickname will be [Police] %PlayerName% [IV]
.
Also, you can use hex colors. Just set the color to e.g.
color: "#2ed264"