Boss Configuration
Configure individual bosses in config.yml
:
bosses:
EXAMPLE_BOSS: # ID of a TRACKED BOSS
victory_message_id: MY_VICTORY_MESSAGE # The ID of a Victory Message
top_players_to_show: 3 # How many players will show
position_format_id: MY_FORMAT # The ID of a Position Format
broadcast_message: true # If everyone on the server should see the message, or only the ones who participated
personal_message_id: MY_PERSONAL # ID of a Personal Message
non_participant_message_id: MY_NONPARTICIPANT # ID for a Non Participant, in case you have broadcast on true
Configuration Options
victory_message_id
: ID of the victory message to usetop_players_to_show
: Number of top players to displayposition_format_id
: ID of the position format to usebroadcast_message
: Whether to show message to all playerspersonal_message_id
: ID of the personal performance messagenon_participant_message_id
: ID of the non-participant message
Default Configuration
Set default values for bosses without specific configurations:
default_boss_config:
victory_message_id: DEFAULT_VICTORY
top_players_to_show: 3
position_format_id: DEFAULT
broadcast_message: true
personal_message_id: DEFAULT
non_participant_message_id: DEFAULT
A boss will use default configuration when declared like this:
NO_CONFIGURATION_BOSS: {}
Last updated