Nothing works, even though the function says it 'does'.
My latest attempt was to use 'removeAllItems'. Even though the WIKI says it will remove ownership information, it does not.
RemoveAllItems(ObjectReference akTransferTo = None, bool abKeepOwnership = false, bool abRemoveQuestItems = false)
http://www.creationkit.com/RemoveAllItems_-_ObjectReference
Does anyone have a way to clear the ownership of items?
I remove all the players items to a chest, and then move them back. That works fine, but the items still say they are 'stolen'.
Scriptname LevelersOwnershipScript extends ObjectReference {Clear ownership from inventory}objectReference property objSelf auto hiddenObjectReference Property LevelersContheftREF Auto Message Property LevelersAutoSortMSG Auto event onCellAttach() objSelf = self as objectReference playAnimation("Open")endEventEvent OnActivate(ObjectReference akActionRef) If akActionRef == Game.GetPlayer() PlayAnimation("Trigger01") Game.GetPlayer().RemoveAllItems(LevelersContheftREF, false, true) Utility.Wait(0.2) LevelersContheftREF.RemoveAllItems(Game.GetPlayer(), false, true) LevelersAutoSortMSG.Show() endifendEvent