{% embed url="https://github.com/LoneDev6/API-ItemsAdder" %}
Custom items - docs
CustomStack stack = CustomStack.getInstance("your_item")
if(stack != null)
{
ItemStack itemStack = stack.getItemStack();
}
else
{
//no custom item found with that id
}
CustomStack.isInRegistry("your_item")
CustomStack stack = CustomStack.byItemStack(myItemStack);
if(stack != null) // It's a custom item!
{
stack.setUsages(5) // For example set usages
// ...
}
else // It's not a custom item!
{
// ...
}
Custom Blocks - docs
CustomBlock.isInRegistry("your_item")
CustomBlock customBlock = CustomBlock.byAlreadyPlaced(block);
if(customBlock != null)
{
// Custom block, do your own stuff here
}
else
{
// Not a custom block
}
CustomBlock customBlock = CustomBlock.getInstance("ruby_ore");
if(customBlock != null) //not needed if you're sure the blocks exists.
{
customBlock.place(location);
}
else
{
// Custom block not found in ItemsAdder configurations!
}
Custom entity - docs
CustomEntity customEntity = CustomEntity.spawn("your_item", location)
if(customEntity != null)
{
// Custom entity spawned
// Example: print the namespaced id in console
System.out.println(customEntity.getNamespacedID());
}
else
{
// Custom entity not found in ItemsAdder configurations!
}
CustomEntity customEntity = CustomEntity.byAlreadySpawned(entity)
if(customEntity != null)
{
// It's a custom entity
// Example: print the namespaced id in console
System.out.println(customEntity.getNamespacedID());
}
else
{
// This Bukkit entity is not a custom entity!
}
Please also install IALiquids addon to have some test liquids
@EventHandler
void interact(PlayerInteractEvent e)
{
if(e.getAction() == Action.LEFT_CLICK_BLOCK)
{
ItemsAdder.setLiquid("ialiquids:red_water", e.getClickedBlock().getLocation());
}
else if(e.getAction() == Action.RIGHT_CLICK_BLOCK)
{
System.out.println(ItemsAdder.getLiquidName(e.getClickedBlock().getRelative(e.getBlockFace()).getLocation()));
}
}
PlayerHudsHolderWrapper playerHudsHolderWrapper = new PlayerHudsHolderWrapper(playerObject);
PlayerQuantityHudWrapper hud = new PlayerQuantityHudWrapper(playerHudsHolderWrapper, "namespace_name:hud_name");
hud.setFloatValue(1f);
PlayerHudsHolderWrapper playerHudsHolderWrapper = new PlayerHudsHolderWrapper(playerObject);
PlayerQuantityHudWrapper hud = new PlayerQuantityHudWrapper(playerHudsHolderWrapper, "namespace_name:hud_name");
hud.setVisible(true);
Custom mobs (old) - docs
CustomMob customMob = CustomMob.spawn("your_item", location)
if(customMob != null)
{
//spawned the custom mob
//example, print the display name in console
System.out.println(customMob.getName());
}
else
{
//no custom mob found with that id
}
CustomMob customMob = CustomMob.byAlreadySpawned(entity)
if(customMob != null)
{
//it's a custom mob
//example, print the display name in console
System.out.println(customMob.getName());
}
else
{
//this mob is not a custom mob
}