Compatibility
Minecraft: Java Edition
1.21.x
1.20.x
1.19.x
1.18.x
1.17.x
1.16.x
1.15.x
1.14.x
1.13.x
1.12.x
1.11.x
1.10.x
1.9.x
1.8.x
Platforms
Creators
Details
Licensed MIT
Published 5 months ago
SimplePrefix
SimplePrefix is a modern, minimalistic Minecraft plugin for managing and displaying player prefixes and groups with LuckPerms integration. It focuses on clean YAML configuration, fast iteration (auto-reload), and reliable tab/nametag handling using scoreboard teams.
Features
- LuckPerms Integration โ Seamless synchronization with LuckPerms groups.
- Team Management โ Scoreboard teams for tab list and nametags with priorities.
- Prefix, Suffix & Name Color โ Full control per group.
- Chat & Tab Format โ Custom formats with placeholders.
- Auto-Reload โ Reload config files automatically without server restart.
- LuckPrefix Migration โ Easy migration with automatic conversion.
- Lightweight โ Minimal performance impact and simple to maintain.
- Straightforward Configuration โ Simple
groups.yml+config.ymlsetup.
Requirements
- Paper or Spigot server (1.8+)
- LuckPerms
- Java 8+
Installation
- Download SimplePrefix.
- Place the
SimplePrefix-<version>.jarfile into your serverโspluginsdirectory. - Start (or restart) your server once.
- Configure
groups.ymlandconfig.yml. - Apply changes with
/sp reload(or let auto-reload handle it).
Configuration
SimplePrefix uses a groups.yml file for group definitions and a config.yml for general settings + formatting.
Example groups.yml
groups:
admin:
prefix: "<red>[Admin] "
suffix: ""
priority: 100
mod:
prefix: "<aqua>[Mod] "
suffix: ""
priority: 90
vip:
prefix: "<yellow>[VIP] "
suffix: ""
priority: 50
default:
prefix: "<gray>[Player]"
suffix: ""
priority: 0
Example config.yml
settings:
auto-reload:
enabled: true
interval: 30
join-delay: 20
team-prefix: "lp_"
debug: false
# Chat & Tab Formatierung
chat-format:
enabled: true
format: "{prefix}{player}{suffix}: {message}"
tab-format:
enabled: true
format: "{prefix}{player}"
Commands & Permissions
Main command: /sp
Basic
/sp helpโsimpleprefix.use
Shows all available commands./sp reloadโsimpleprefix.reload
Reloads all configuration files./sp update [player]โsimpleprefix.update
Updates teams (all players or a single player)./sp listโsimpleprefix.list
Shows all configured groups.
Group management
/sp create <group> <prefix>โsimpleprefix.create/sp set <group> prefix <value>โsimpleprefix.set/sp set <group> suffix <value>โsimpleprefix.set/sp set <group> priority <0-999>โsimpleprefix.set/sp set <group> namecolor <color>โsimpleprefix.set/sp clear <group> prefix|suffix|namecolorโsimpleprefix.set/sp delete <group>โsimpleprefix.delete/sp save <group>โsimpleprefix.save
Format management
/sp format chatโsimpleprefix.format/sp format chat set <format>โsimpleprefix.format/sp format chat toggleโsimpleprefix.format/sp format tabโsimpleprefix.format/sp format tab set <format>โsimpleprefix.format/sp format tab toggleโsimpleprefix.format
Migration & maintenance
/sp migrate luckprefixโsimpleprefix.migrate
Migrates all data from LuckPrefix./sp cleanupโsimpleprefix.cleanup
Automatically removes empty groups.
Placeholders
Use these in chat-format.format and tab-format.format:
{prefix}: Replaced with the group prefix.{suffix}: Replaced with the group suffix.{player}: The player's name (without color).{message}: The player's chat message (chat format only).


