1. ios

    ios

    how to set a skin to the created subject?
     
  2. Like this:
    Code:
    Item item = ItemManager.CreateByName(shortname, amount);item.skin = skin;if (item.GetHeldEntity())
    {
        item.GetHeldEntity().skinID = skin;
    }
    "skin" is the skin ID of the skin.
    For a list of skin IDs look here:
    Rust
     
  3. ios

    ios

    thanks!