Skip to content
This repository has been archived by the owner on Mar 25, 2018. It is now read-only.
Zoyn edited this page Feb 7, 2018 · 2 revisions

Welcome to the BukkitUtils wiki!

ItemStackUtils#ItemStackBuidler

val item = ItemStackBuilder(Material.DIAMOND_SWORD)
                .durability(100)
                .displayName("1")
                .lore(mutableListOf("&a1", "&b2333"), translate = true)
                .itemFlag(ItemFlag.HIDE_ATTRIBUTES, ItemFlag.HIDE_ENCHANTS)
                .enchant(Enchantment.DAMAGE_ALL, 100, ignoreSecurity = true)
                .unbreakable(true)
                .amount(1)
                .build()
Clone this wiki locally