General:
* Updated the debug mode for the new methods
CTSNC+:
* CTSNC does now also support these new BossBar feautures(
https://www.spigotmc.org/resources/...-nametag-chat-★-1-8-1-11-protocol-hack.11212/)
BossBar:
* Re-implemented bossbar functions for version between 1.9 - 1.11:
/* Need to be used first */
+ TTA_Methods.createBossBar(Player player, String text, Double progress, BarStyle barstyle, BarColor barcolor, BarFlag barflag, boolean visible);
/* Methods to edit the created bar in detail afterwards */
+ TTA_Methods.setBarTitle(String text);
+ TTA_Methods.setBarProgress(Double progress); - The double need to be between 0.0 and 1.0!
+ TTA_Methods.setBarColor(BarColor color);
+ TTA_Methods.setBarStyle(BarStyle style);
+ TTA_Methods.addBarFlag(BarFlag flag);
+ TTA_Methods.setBarVisibility(boolean visible);
+ TTA_Methods.removeBarFlag(BarFlag flag);
+ TTA_Methods.removeBossBar(Player player);
Developer Comment: It lasted long to re-implement those methods, but now
where there are back with more details and secure checks I am looking forward
to implement them for most of my plugins and also I will take a look for full 1.8 support.
Also I need to apologize to everyone that it taked much longer then I promised.