- Found in:
- iEquip
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
Forma_item
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