Skyrim Delete Item From Inventory



Every time I try to use or remove a steel weapon or item, the game crashes to desktop. This happens with all steel items only. Everything else works just find. The only mods I'm using are: Dragonborn, Hearthfires, Dawnguard, highrestexturepack 1,2 & 3, The Final Breezehome Cellar and Hunters Keep.

Hi there,

Skyrim Inventory Command

I'm trying to re-create some of my Oblivion/Fallout mods.

Removing An Equipped Item. posted in Skyrim Special Edition Creation Kit and Modders: I have made a triggerbox base that I can place anywhere that if the player enters it (water will be falling or player will be submerged) and has a torch EQUIPPED, not important if player has x amount in inventory, that I want to dowse the torch i.e. Remove the torch the player has equipped. This cheat will clear all items from the inventory of your target. This command can be used on NPCs and containers. Use 'player.removeallitems' to clear your own inventory. Use 'removeallitems player' to move items from your target's inventory into your character's. For the item you want to remove, type 'removeitem #' Get the # from the code in parenthesis next to the item name. You do not need to input the zeros before a command, the game ignores those.


Those need to loop over all items in the player's inventory and remove items of a certain type, in particular
  • arrows
  • potions
  • crafting materials (ore, ingots, leather, ...)
  • alchemy ingredients
  • soul gems
Naturally I don't want to check every item's ID but would prefer to use a boolean function (IsIngredient, IsAmmo) or at least check members of a predefined list.Item
In the CK I only found
  • lists: ArrowTypeFormList, CookingIngredientsList, SoulGemsAll
  • form types: AMMO, INGR, SLGM.
Apart from the fact that I don't know yet how to code the checks, I didn't find a CK attribute I can use for all of the item types I'd like to handle (there's no AlchemyIngredientsList, no SmithingIngredientsList and smithing material is stored as form type MISC).Skyrim
Any idea? Or should I wait for appropriate SKSE functions?
I find the CK-Wiki hard to navigate, is there a page that lists, for example, all valid arguments to AddInventoryEventFilter? (CookingIngredientsList is the one in the example)

Add Item To Inventory Skyrim

Many thanks in advance! Hi there,
I'm trying to re-create some of my Oblivion/Fallout mods.
Those need to loop over all items in the player's inventory and remove items of a certain type, in particular
  • arrows
  • potions
  • crafting materials (ore, ingots, leather, ...)
  • alchemy ingredients
  • soul gems
Naturally I don't want to check every item's ID but would prefer to use a boolean function (IsIngredient, IsAmmo) or at least check members of a predefined list.

Skyrim Delete Item Command

In the CK I only found
  • lists: ArrowTypeFormList, CookingIngredientsList, SoulGemsAll
  • form types: AMMO, INGR, SLGM.
Apart from the fact that I don't know yet how to code the checks, I didn't find a CK attribute I can use for all of the item types I'd like to handle (there's no AlchemyIngredientsList, no SmithingIngredientsList and smithing material is stored as form type MISC).
Any idea? Or should I wait for appropriate SKSE functions?

Skyrim Item Prices


Skyrim Delete Item From Npc Inventory

I find the CK-Wiki hard to navigate, is there a page that lists, for example, all valid arguments to AddInventoryEventFilter? (CookingIngredientsList is the one in the example)
Many thanks in advance!