Is there a way to spawn an item with a skin on it?
server.Command($"inventory.giveto {player.Id} hoodie"); + Adding a skin to the hoodie?
Is there a way to spawn an item with a skin on it?
You can create items with skins using the methods in ItemManager. These methods return an Item which you can then move to the player's inventory.
Is Item Manager a plugin?0x89A
You can create items with skins using the methods in ItemManager. These methods return an Item which you can then move to the player's inventory.
Oh lol no nvm I just worked jt out sorryRodney
Is Item Manager a plugin?
i have the same question but i didnt worked it out xD what is ItemManager? What methods?
GiCl90i have the same question but i didnt worked it out xD what is ItemManager? What methods?
You can use either:
ItemManager.Create(ItemDefinition template, int amount, long skin)
ItemManager.CreateByItemID(int itemID, int amount, long skin)
ItemManager.CreateByName(string shortname, int amount, long skin)
ItemManager.CreateByPartialName(string partialName, int amount, long skin)