- Tested Minecraft Versions:
- 1.8
- 1.9
- 1.10
- 1.11
- 1.12
- Donation Link:
- http://paypal.me/MLGEditzCoding
What does AdvancedAPI contain?
- Economy system [MySQL support!]
- ActionBarAPI
- TitleAPI
- Bossbar API
- Particle API
- NPC API
=============================================
![]()
Server Owners:
- Simply download the plugin and place it in your plugins folder. if you want to use MySQL you can go to the config.yml and fill in your database info and set storagetype to mysql.
Developers:
- Add the plugin in your build path and use it in your plugin.
=============================================
![]()
Check for plugin:
Code (Text):if (!Bukkit.getPluginManager().isPluginEnabled("AdvancedAPI")) {
Bukkit.getConsoleSender().sendMessage("Plugin AdvancedAPI has not been found!");
Bukkit.getConsoleSender().sendMessage("Disabling plugin..");
Bukkit.getPluginManager().disablePlugin(Main.pl);
HandlerList.unregisterAll(Main.pl);
return;
}
Particles:
Code (Text):AdvancedAPI.Particles().sendParticle(p, EnumParticle.FLAME, p.getLocation(), 2, 2, 2, 0.05f, 400);
Title:
Code (Text):AdvancedAPI.Title().sendTitle(p, 20, 10, 20, "Welcome!");
ActionBar:
Code (Text):AdvancedAPI.ActionBar().sendActionBar(p, "Hi there :)");
Money:
Code (Text):AdvancedAPI.Money().setMoney(p, target, money);
int playermoney = AdvancedAPI.Money().getMoney(target);
p.sendMessage("€ " + playermoney + ",-");
Bossbar:
Code (Text):AdvancedAPI.BossBar().createBossBarForAll("Welcome!", BarColor.BLUE, BarStyle.SOLID, BarFlag.PLAY_BOSS_MUSIC);
=============================================
![]()
You can find the source code on:
http://www.github.com/MLGEditz
=============================================
![]()
For support you can send me a message on discord:
Jesse#7369 or just add a post in the Discussion section.
=============================================

AdvancedAPI 1.0
An api that contains alot of functions