Difference between revisions of "OnObjectEquipped - Actor"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Chesko
imported>Chesko
(Note about event order precedence.)
Line 23: Line 23:
endEvent
endEvent
</source>
</source>
== Notes ==
*An [[OnObjectUnequipped - Actor|OnObjectUnequipped()]] event will always get sent before [[OnObjectEquipped - Actor|OnObjectEquipped()]] when equipping an item to an occupied equipment slot.


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

Revision as of 12:19, 15 August 2012

Member of: Actor Script

Event called when the actor equips an object.

Syntax

Event OnObjectEquipped(Form akBaseObject, ObjectReference akReference)

Parameters

  • akBaseObject: The base object the actor just equipped.
  • akReference: The reference that the actor just equipped - if the reference is persistant. Otherwise, None.

Examples

Event OnObjectEquipped(Form akBaseObject, ObjectReference akReference)
  if akBaseObject as Weapon
    Debug.Trace("This actor just equipped a weapon!")
  endIf
endEvent

Notes

See Also