Messagings
hCore allows you to message with player with any way you want.
BossBars
HBossBar myBossBar = HCore.createBossBar("Title", HBarColor.WHITE, HBarStyle.SOLID); // creates bossbar with color white
myBossBar.setColor(HBarColor.RED); // changes it's color to red
myBossBar.addPlayer(player); // allows player to see the bossbarTitles
HTitle myTitle = new HTitle("Title", "Subtitle", 5, 3, 2); // created a title with title "Title" and subtitle "Subtitle" which appears in 3 ticks, disappears in 2 ticks so totally exists for 5 ticks
HCore.sendTitle(player, myTitle); // sent title to playerAction Bars
HCore.sendActionBar(player, "Welcome back, " + player.getDisplayName()); // sent a simple actionbar to player with string "Welcome, playerName"Last updated