i wanna add a +4 1 soc -3 item to the inventory. i only know how to add items with +. Help :o
Code:
#region Super WarArmor Pack
case 721224://Super 1 soc War Armor
{
if (client.Inventory.Count <= 40)
{
client.Inventory.Remove(item, Game.Enums.ItemUse.Remove);
client.Inventory.Add(131069, 6, 1);
}
else
client.Send(ServerBase.Constants.FullInventory);
break;
}
#endregion