Trying to change item names for all server on Bukkit getting error

Asked By 0 points N/A Posted on -
qa-featured

Hi,

I was trying to change item names for all server items on Bukkit. I installed ItemRenamer but I have been getting this error shown below. Any ideas?

1 item was skipped:  “ (-1700)

Error with getting the item name

1 item was skipped:

“ (-1700)

SHARE
Answered By 5 points N/A #176120

Trying to change item names for all server on Bukkit getting error

qa-featured

Hi,

Please use the latest development build. They implemented new APIs for naming items.

For instance,

ItemStack noName = new ItemStack(Material.DIRT);
ItemMeta meta = noName.getItemMeta();

To resolve ItemRenamer issue, make sure the build works before integrating ItemRenamer.

To confirm, uninstall IR first then rename server items manually.

If it works then there was just a configuration issue which was misconfigured.

If not, use the latest development build which comes with the new naming API. You can use it without ItemRenamer.

Related Questions