An amazing bukkit/spigot library and utility plugin used by the legendary XZot1K!
In order to properly use ZotBox you will need to be able to retrieve the Lib’s instance. You can do this by following these instructions:
import XZot1K.plugins.zl.ZotBox;
import org.bukkit.plugin.java.JavaPlugin;
import java.util.logging.Level;
public final class Main extends JavaPlugin
{
private ZotBox zotBox;
@Override
public void onEnable()
{
if (!isZotBoxInstalled())
{
getServer().getConsoleSender().sendMessage(ChatColor.translateAlternateColorCodes('&', "&e"
+ getName() + " &cwas unable to enable, due to &bZot&7Box &cnot being installed."));
getServer().getPluginManager().disablePlugin(this);
return;
}
getZotBox().getGeneralLibrary().sendConsoleMessage(this, "&aZotBox was found and has been successfully hooked into!");
}
private boolean isZotBoxInstalled()
{
ZotBox zotBox = (ZotBox) getServer().getPluginManager().getPlugin("ZotBox");
if(zotBox != null)
{
setZotBox(zotBox);
return true;
}
return false;
}
public ZotBox getZotBox()
{
return zotBox;
}
private void setZotBox(ZotBox zotBox)
{
this.zotBox = zotBox;
}
}