A Spigot/Bukkit plugin that adds a special crown item with unique properties.
- Special golden helmet with customizable properties
- Unbreakable and with the stats of a Netherite helmet
- Grants extra health to the wearer (default: +2 hearts)
- Has curse of binding (configurable)
- Only the assigned owner can wear the crown
- Crown is automatically destroyed on death and returned to the owner on respawn
- Cannot be picked up by other players
- NEW: Particle effects when someone becomes leader!
- Download the latest release JAR file
- Place the JAR file in your server's
pluginsfolder - Start or restart your server
- Edit the configuration file at
plugins/Crown/config.ymlif needed - Run
/crown reloadin-game to apply changes
/crown- Give yourself a crown (requirescrown.usepermission)/crown give <player>- Give a crown to a player (requirescrown.adminpermission)/crown remove <player>- Remove a crown from a player (requirescrown.adminpermission)/crown reload- Reload the plugin configuration (requirescrown.adminpermission)
crown.use- Allows using the crown command to give yourself a crowncrown.admin- Allows using administrative crown commands (give, remove, reload)
The plugin is highly configurable. You can customize:
- Material of the crown (default: golden helmet)
- Display name and lore
- Health bonus
- Armor value
- Enchantments and curses
- NEW: Particle effects when someone becomes leader!
The plugin now includes configurable particle effects that trigger when a player becomes leader. You can customize:
- enabled: Enable/disable particle effects (default: true)
- type: Particle type to use (FLAME, ENCHANTMENT_TABLE, PORTAL, etc.)
- count: Number of particles to spawn per tick
- duration: How long the effect lasts (in ticks, 20 ticks = 1 second)
- offset: Position offset from the player (x, y, z coordinates)
- speed: Speed of the particles
- color: RGB color values for colored particles (like REDSTONE)
Example configuration:
particles:
enabled: true
type: FLAME
count: 50
duration: 60
offset:
x: 0.5
y: 2.0
z: 0.5
speed: 0.3
color:
red: 255
green: 215
blue: 0See the config.yml file for all configuration options.
- Clone the repository
- Build with Maven:
mvn clean package - The built JAR file will be in the
targetdirectory