Example #1
0
        /// <summary>
        /// Add a clothes item from a slot and an index
        /// </summary>
        public bool AddClothes(ClothesSlot slot, int index)
        {
            Tuple <string, string> result = MtaShared.GetClothesByTypeIndex((int)slot, index);

            return(MtaShared.AddPedClothes(element, result.Item1, result.Item2, (int)slot));
        }