Spawn item with a skin?

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?

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.

rpFz11YwVoC6Vbp.png 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.

Is Item Manager a plugin?
sWKCq3KI1JjCmt0.png Rodney
Is Item Manager a plugin?
Oh lol no nvm I just worked jt out sorry

i have the same question but i didnt worked it out xD what is ItemManager? What methods?

GiCl90

i 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)