Information
-------------------
This plugin provides the other plugins the ability to create custom items in Minecraft with different states. The changes of these states change the item into operating different depends on how you code the custom item.
Important Note: The library has been tested only on
Minecraft 1.8.x
Note: Currently the library is in
BETA state. There are certain functionalities that are required to be implemented in order for the library to be stable.
JitPack
-------------------
https://jitpack.io/#iHDeveloper/ReactItem/v0.8
Getting Started
------------------------
Code (Text):
class ExamplePlugin extends JavaPlugin {
private ReactItemAPI reactItemAPI;
public void onEnable() {
reactItemAPI = (ReactItemAPI) getServer().getPluginManager().getPlugin("ReactItem");
}
}
Examples
-------------------
Forbidden Stick:
https://github.com/iHDeveloper/ReactItem/blob/master/test/src/main/java/me/ihdeveloper/react/item/test/item/ForbiddenStick.java