Background for Skyrim SE
Member of the iEquip_InventoryExt script
eventOnRefHandleInvalidated(Forma_item, inta_refHandle)

Description

Documentation Comment

@brief Fires whenever an item of a tracked type is removed from the player's inventory.
@param a_item The form of the item added.
@param a_refHandle The handle for identifying the item.
@notes Tracked types include:

  • Weapon
  • Armor

Parameters

  1. Forma_item

  2. inta_refHandle


Examples

Auto-Generated Example

Scriptname MyCoolScript extends iEquip_InventoryExt

event OnRefHandleInvalidated(Form a_item, int a_refHandle)
    Debug.trace("Event received - OnRefHandleInvalidated: a_item = " + a_item + " a_refHandle = " + a_refHandle)
endEvent
Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.