OnObjectEquipped - Actor

Revision as of 18:11, 20 March 2012 by imported>RedwoodElf

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

  • This event does not fire when the player equips an item via a hotkey.

See Also