Code: Select all
public void h(TriggerArgs args)
{
if (args.Sender is IPlayer)
{
IPlayer plr = (IPlayer)args.Sender;
IProfile profile = plr.GetProfile();
profile.ChestUnder = new IProfileClothingItem("Shirt", "ClothingWhite");
profile.ChestOver = new IProfileClothingItem("Coat", "ClothingWhite", "ClothingDarkRed");
profile.Legs = new IProfileClothingItem("Pants", "ClothingWhite");
profile.Feet = new IProfileClothingItem("Shoes", "ClothingWhite");
plr.SetProfile(profile);
}
}

