What is this plugin?

Hello! in many servers I have seen that they use this type of plugins for messages … I need your help, I have searched everywhere in this forum and I can not find anything: /

I am very grateful <3

image

Its called a bossbar and can be set using vanilla commands. They could also have a private plugin that displays the message

It’s mainly a private plugin tossed around between pixelmon server owners.

1 Like

You can’t tell me there’s no public bossbar plugin for sponge ಠ_ಠ

I did a search on Ore and seems not to be for api 7+

KtSkript provides you with a simple scripting solution. It is just a very simple script to display the bossbar. That might be even doable with vanilla commands.

val bossbar = ServerBossBar.builder()
  .percent(1f)
  .name("&dTest text".t)
  .color(BossBarColors.BLUE)
  .overlay(BossBarOverlays.NOTCHED_6)
  .build()

onPlayerJoin {
  bossbar.addPlayer(player)
}