Difference between revisions of "RemoveAllItems"
Jump to navigation
Jump to search
imported>Vswe m (Added Search Terms) |
imported>Imagine (→Notes: Added console solution for the stuck enchantments glitch.) |
||
Line 10: | Line 10: | ||
==Notes== | ==Notes== | ||
* Quest items are not removed when this function is called on the player | * Quest items are not removed when this function is called on the player | ||
* This function causes worn or wielded quest items to become unequipped. Any enchantment on wearable quest items will remain attached to the player permanently, and the quest item will become unwearable. | * This function causes worn or wielded quest items to become unequipped. Any enchantment on wearable quest items will remain attached to the player permanently, and the quest item will become unwearable. The stuck enchantment effects may be removed from the player by using the "''player.dispel EnchantmentID''" command. | ||
* This function does not remove items flagged as "unplayable". | * This function does not remove items flagged as "unplayable". | ||
* Sometimes the OnDrop and OnAdd of the moved items are not triggered when this function is called until the player opens the target container. For some scripted items using OnDrop and OnAdd, it may cause unexpected results. | * Sometimes the OnDrop and OnAdd of the moved items are not triggered when this function is called until the player opens the target container. For some scripted items using OnDrop and OnAdd, it may cause unexpected results. |
Revision as of 05:48, 7 June 2009
Syntax:
RemoveAllItems TargetContainerID (optional), RetainOwnershipFlag (optional)
Example:
RemoveAllItems RemoveAllItems TreasureChest RemoveAllItems FriendlyJailer, 1
Removes all items from the caller's inventory. If TargetContainerID is specified, the objects are moved to the target container, otherwise they are destroyed. If RetainOwnershipFlag = 1, the items' original ownership is retained; otherwise, the ownership is cleared.
Notes
- Quest items are not removed when this function is called on the player
- This function causes worn or wielded quest items to become unequipped. Any enchantment on wearable quest items will remain attached to the player permanently, and the quest item will become unwearable. The stuck enchantment effects may be removed from the player by using the "player.dispel EnchantmentID" command.
- This function does not remove items flagged as "unplayable".
- Sometimes the OnDrop and OnAdd of the moved items are not triggered when this function is called until the player opens the target container. For some scripted items using OnDrop and OnAdd, it may cause unexpected results.
See Also