Failing that, what happens when a quest item is removed to a container? Will the quest bomb, or be suspended at the part where the quest item is needed, until it is retrieved by the player?
Game.GetPlayer().RemoveAllItems(akTransferTo = mycontainer, abKeepOwnership = true, abRemoveQuestItems = true)
myTotalItemCount = akCaster.GetNumItems()while (myTotalItemCount > 0) myTotalItemCount = myTotalItemCount - 1 myForm = akCaster.GetNthForm(myTotalItemCount) if !akCaster.IsEquipped(myForm) myFormCount = akCaster.GetItemCount(myForm) akCaster.RemoveItem(myForm, myFormCount, true, mycontainer) endifendwhile