Difference between revisions of "OnObjectUnequipped - Actor"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Jlundin
 
imported>RedwoodElf
Line 23: Line 23:
endEvent
endEvent
</source>
</source>
== Notes ==
* This event does not fire if the player unequips an item via a hotkey


== See Also ==
== See Also ==

Revision as of 17:12, 20 March 2012

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

  • This event does not fire if the player unequips an item via a hotkey

See Also