Would this work to clear inventory?
Is for the 5018 source.
Is for the 5018 source.
Code:
case "/clearinv"://Not tested yet
{
foreach (IConquerItem I in MyChar.Inventory)
{
MyChar.RemoveInventory(I.ID);
}
break;
}