OnObjectUnequipped - Actor
Revision as of 12:21, 15 August 2012 by imported>Chesko (Removed incorrect note about event not firing when using a hotkey (it does as of Skyrim 1.7). Added note about event order precedence.)
Member of: Actor Script
Event called when the actor unequips an object.
Syntax
Event OnObjectUnequipped(Form akBaseObject, ObjectReference akReference)
Parameters
- akBaseObject: The base object the actor just unequipped.
- akReference: The reference the actor just unequipped, if the reference is persistent. Otherwise, None.
Examples
Event OnObjectUnequipped(Form akBaseObject, ObjectReference akReference)
if akBaseObject as Armor
Debug.Trace("This actor just unequipped a piece of armor!")
endIf
endEvent
Notes
- An OnObjectUnequipped() event will always get sent before OnObjectEquipped() when equipping an item to an occupied equipment slot.