A lightweight Minecraft Spigot plugin that displays configurable boss bars with custom messages to all online players.
- Create multiple boss bar messages with different colors and styles
- Configure how long each message should be displayed
- Randomize the display order of messages
- World whitelist option to only show boss bars in specific worlds
- Multi-language support (English and Spanish)
- Full in-game command support for configuration
- Progress bar that shows the remaining time
- Minecraft Server with Spigot/Paper 1.13 or higher
- Java 8 or higher
- Download the latest release from here
- Place the JAR file in your server's
pluginsfolder - Start/restart your server
- Configure the plugin via the generated
config.ymlfile or in-game commands
After installation, the plugin will automatically display the configured boss bars to all online players. The default configuration includes an example boss bar message.
/bbnotify help- Displays help information/bbnotify reload- Reloads the plugin configuration/bbnotify create <id> <color> <style> <time> <message>- Creates a new boss bar/bbnotify edit <id> <property> <value>- Edits an existing boss bar/bbnotify delete <id>- Deletes a boss bar/bbnotify list- Lists all configured boss bars
/bbn- Short alias for/bbnotify
bossbarnotify.command- Access to BossBarNotify commandsbossbarnotify.reload- Allows reloading the plugin configurationbossbarnotify.create- Allows creating new boss barsbossbarnotify.edit- Allows editing existing boss barsbossbarnotify.delete- Allows deleting boss barsbossbarnotify.list- Allows listing all boss bars
# The language for messages (en, es)
Language: en
BossBarMessages:
# Enable or disable the boss bar messages
Enabled: true
# If enabled, boss bars will only show in the worlds listed below
World_Whitelist_Enabled: false
# Show messages in random order
Random_Order: false
# Hide the progress bar
No_Progress: false
# List of worlds where boss bars will show (if World_Whitelist_Enabled is true)
World_Whitelist:
- worldMessages:
UniqueID:
Message: '&e&l(!) &fYour message with &ecolor &fcodes'
Color: YELLOW # BLUE, GREEN, PINK, PURPLE, RED, WHITE, YELLOW
Style: SOLID # SOLID, SEGMENTED_6, SEGMENTED_10, SEGMENTED_12, SEGMENTED_20
Time: 10 # Display time in secondsUse the command: /bbnotify create <id> <color> <style> <time> <message>
Example:
/bbnotify create welcome BLUE SOLID 15 &b&lWelcome! &fThanks for joining the server!
Add a new entry to the BossBarMessages.Messages section in config.yml:
Messages:
welcome:
Message: '&b&lWelcome! &fThanks for joining the server!'
Color: BLUE
Style: SOLID
Time: 15BLUEGREENPINKPURPLEREDWHITEYELLOW
SOLID(or0or6)SEGMENTED_6(or1)SEGMENTED_10(or2)SEGMENTED_12(or3)SEGMENTED_20(or4)
If you encounter any issues or have questions, please create an issue on GitHub.
This project is licensed under the MIT License - see the LICENSE file for details.
- MrPastelitoo_