OnItemUnequipped - Actor

From the Fallout4 CreationKit Wiki
Revision as of 02:14, 13 January 2018 by imported>Scrivener07 (Potions fire this event.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Actor Script

Event called when the actor unequips an object.

Syntax[edit | edit source]

Event OnItemUnequipped(Form akBaseObject, ObjectReference akReference)

Parameters[edit | edit source]

  • akBaseObject: The base object the actor just unequipped.
  • akReference: The reference the actor just unequipped, if the reference is persistent. Otherwise, None.

Examples[edit | edit source]

Event OnItemUnequipped(Form akBaseObject, ObjectReference akReference)
  if akBaseObject as Armor
    Debug.Trace("This actor just unequipped a piece of armor!")
  endIf
endEvent

Notes[edit | edit source]

  • Using potions will fire this event.

See Also[edit | edit source]