Custom Items

Within the plugin there are various custom items that have unique abilities, there is a class called ItemsHandler which stores all the custom items in the plugin. All the items are static variables so you can easily reference them and give them to a player like this:

p.getInventory().addItem(ItemsHandler.plagueCure);
p.getInventory().addItem(ItemsHandler.soulRipper);

Last updated