Getting Started
First step
If you want to use the API make sure to load your plugin after BedWars1058.
- Add it as softdepend in plugin.yml:
softdepend: [BedWars1058]
- Check if BedWars1058 is on the server:
@Override
public void onEnable() {
//Disable if pl not found
if (Bukkit.getPluginManager().getPlugin("BedWars1058") == null) {
getLogger().severe("BedWars1058 was not found. Disabling...");
Bukkit.getPluginManager().disablePlugin(this);
return;
}
}
Getting API Methods
Initializing the API:
BedWars bedwarsAPI = Bukkit.getServicesManager().getRegistration(BedWars.class).getProvider();
JavaDoc
Click here for JavaDocs.
Configuration
If you want to create a config file for your add-on, you should use our standars and create it in plugins/BedWars1058/Addons/AddonName/config.yml
.