OnEquipped - ObjectReference

Member of: ObjectReference Script

Event called when the object reference has been equipped by an actor.

SyntaxEdit

Event OnEquipped(Actor akActor)

ParametersEdit

  • akActor: The actor that equipped this object.

ExamplesEdit

Event OnEquipped(Actor akActor)
  if akActor == Game.GetPlayer()
    Debug.Trace("We were equipped by the player!")
  endIf
endEvent

NotesEdit

  • When an object is equipped it is inside a container, which means that you cannot call Member Functions on it. (Unless it is a persistent reference)
  • This event wont always fire. If the item is being equipped normally through the Inventory it works as intended. If it equipped through the console or papyrus calls instead, the event will not fire.

See AlsoEdit