RegionBossbar
RegionBossbar is a Minecraft server plugin that displays custom boss bars to players when they are within specific regions of the world. It is particularly useful for conveying important information, promotions, welcome messages, or personalized alerts to players as they explore the server.
Key Features:
- Custom Boss Bars: Configure different boss bars for different regions of your world, each with its own text, color, and style.
- WorldGuard Integration: Utilize the power of WorldGuard to define the regions where boss bars should be displayed.
- Multi-Player Support: Each player sees the correct boss bar based on the region they are in, providing a personalized experience.
- Permissions Support: Control which players can reload the plugin.
- Dynamic Updates: Boss bars update dynamically as players move between regions, ensuring they always see the relevant information.
Configuration:
The plugin uses a YAML configuration file to define the boss bars for different regions. Here is an example part of configuration:
Code (YAML):
# Configuration for RegionBossbar
bossbars:
- regionName
:
"spawn"
name
:
"Welcome to Spawn!"
color
:
"PURPLE"
style
:
"SOLID"
- regionName
:
"market"
name
:
"Welcome to the Market!"
color
:
"GREEN"
style
:
"SEGMENTED_10"
- regionName
:
"pvp_arena"
name
:
"Entering PvP Arena"
color
:
"RED"
style
:
"SOLID"
- regionName: "__global__"
name: "Hello World!"
color: "BLUE"
style: "SEGMENTED_6"
Commands:
- /regionbossbar reload: Reloads the plugin configuration. Requires the regionbossbar.reload permission.
Permissions:
- regionbossbar.reload: Allows the player to reload the plugin configuration.
Colors
The available colors for boss bars are:
- BLUE
- GREEN
- PINK
- PURPLE
- RED
- WHITE
- YELLOW
Styles
The available styles for boss bars are:
- SOLID: A solid bar.
- SEGMENTED_6: A bar divided into 6 segments.
- SEGMENTED_10: A bar divided into 10 segments.
- SEGMENTED_12: A bar divided into 12 segments.
- SEGMENTED_20: A bar divided into 20 segments.
If you set "regionName: __global__" the bossbar will work everywhere where there is no region.