There's a link to the GitHub, there are some explanations and examples there. It's basically a wrapper for the current Plugin Messaging,...
Commy - a Powerful Framework to Simplify Plugin Messaging Note that the reason I put this here, is because it's not only for BungeeCord, but also...
Well, I found the solution. With doing some debugging, I found that your could use NMS to change the RequiredPlayerRange to 0. The default value...
How would I go about removing particles from a block? For example, remove the flame fumes from the mob spawner? I managed to remove the spinning...
You shouldn't constantly read/write to the file, it'll eventually get heavy. Store cache in memory and save/load when neccecary.
Have Hunt implement ConfigurationSerializble, and follow instructions given here:...
You know when you save a Location to the config (which implements ConfigurationSerializable), then you see ===: Location. That is what the...
It's because TARDIS is using CraftSound from CraftBukkit version 1.7. Basically meaning they are using packets, but not compatible with your...
I know this is Spigot, but https://www.spigotmc.org/resources/bossbar-broadcaster-1-9-1-10-1-11-with-animation.35393/.
Why even have a util like that... waste of time. Java already have utilities that can do all of this for you.
Because you are formatting this object: Date now = new Date(); Which does not have the added 30 days. Anyways, you have a String there called...
Weird. Full code? Sent from my iPhone using Tapatalk
Could get tricky. Instead create a Team object to mange each induviduals team's locations. Might also want to create your own implementation of...
Calendar now = Calendar.getInstance(); System.out.println(now.getTime().toString()); // Adding 30 days now.add(Calendar.DATE, 30); Date then =...
Separate names with a comma.