Started by
Matrillex
on
Topic category: Help with MCreator software
I was wondering if there is a way to add lore to an item that comes with as you craft it, lore being similar to the "Lore" command.
Topic category: Help with MCreator software
I was wondering if there is a way to add lore to an item that comes with as you craft it, lore being similar to the "Lore" command.
I am not familiar with this "lore" command but if you mean text, it is there when you create a block/item.
/give @p diamond_sword 1 0 { display: { Name: "Sword", Lore: [ "Put Lore Here" ] }}
This would be the command, when used it adds purple writing to a weapon.
Here is a picture
Technically the "Name: "Sword"" part isn't needed and the code at it's basic would look like this
/
give @p diamond_sword 1 0 { display: { Lore: [ "Put Lore Here" ] }}
Where the "Put Lore Here" is where you'd type what you want it to say and you can basically give tools descriptions.
And so my question is if there is a way to have things like this already on the weapon/tool when you get it.