(1.5.2) Adds the ability to display BossBars to eaglercraft with an API
Go to file
2022-07-16 16:54:17 -07:00
.idea Added a teleport timer 2022-07-16 15:28:36 -07:00
src/main Added a teleport timer 2022-07-16 15:28:36 -07:00
target Recompiled 2022-07-16 15:31:30 -07:00
.gitignore Initial commit 2022-06-24 13:54:38 -07:00
BossBarAPI.iml First stable commit 2022-06-25 18:57:33 -07:00
dependency-reduced-pom.xml Recompiled 2022-07-16 15:31:30 -07:00
LICENSE Initial commit 2022-06-24 13:54:38 -07:00
pom.xml First stable commit 2022-06-25 18:57:33 -07:00
README.md Update README.md 2022-06-25 19:22:09 -07:00

BossBarAPI

Adds the ability to display BossBars to eaglercraft with an API

How to use:

There is one default command that BossBarAPI comes with and that is /bossbar which creates a bossbar with the text "Countdown" and the bar slowly goes down

Here is a guide to the API: To create a BossBar do

BossBar bar = new BossBar(player)

This will create a bossbar instance but wont spawn in the bossbar itself to the player

To set the Bars health do

bar.setBarHealth(int)

To set the bar's text do:

bar.setText(String)

If these values are not set before the bossbar is displayed, they will default to 200 which is the bar's full health and "A Bossbar!"

there are also getters for these 2 methods

To display a bossbar, use

bar.display()

To delete the bossbar, do

bar.delete

There is also a bar.getLocation which returns the location of the Enderdragon but you will most likely never use this method

ok thanx byeee