Cuberite Forum

Full Version: crafting items with names
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I know that you can change or add crafting recipes, but i was wondering if you can make it so you can craft items with names? For example, if i were to put two sticks on a crafting table, it would make a wooden sword with the name "basic wooden sword" where as if i put three sticks in the crafting table, it would make a wooden sword with the name "advanced wooden sword". Is this even possible?
Yes you can change the name of a item. Here is a link to the class cItem. Look at the member variables.

Example
local item = cItem(E_ITEM_BLAZE_ROD, 1)
item.m_CustomName = "A special blaze"
thanks =)