Difference between revisions of "OnObjectEquipped - Actor"

315 bytes added ,  00:08, 2 December 2021
m
Minor note that this event fires for more than just weapons and armor.
imported>Jonwd7
m (Typo)
m (Minor note that this event fires for more than just weapons and armor.)
 
(4 intermediate revisions by 3 users not shown)
Line 4: Line 4:
'''Member of:''' [[Actor Script]]
'''Member of:''' [[Actor Script]]


Event called when the actor equips an object.
Event called when the actor equips an object. Note that this includes consumable objects such as potions.


== Syntax ==
== Syntax ==
<source lang="papyrus">
<source lang="text">
Event OnObjectEquipped(Form akBaseObject, ObjectReference akReference)
Event OnObjectEquipped(Form akBaseObject, ObjectReference akReference)
</source>
</source>
Line 26: Line 26:
== Notes ==
== Notes ==
*An [[OnObjectUnequipped - Actor|OnObjectUnequipped()]] event will always get sent before [[OnObjectEquipped - Actor|OnObjectEquipped()]] when equipping an item to an occupied equipment slot.
*An [[OnObjectUnequipped - Actor|OnObjectUnequipped()]] event will always get sent before [[OnObjectEquipped - Actor|OnObjectEquipped()]] when equipping an item to an occupied equipment slot.
**The OnObjectEquipped() event does not wait for the OnObjectUnequipped() event to complete before starting.  Adding the Utility.Wait(n) function at the beginning of the OnObjectEquipped() event script can help ensure it waits for the first event to finish.


== See Also ==
== See Also ==
56

edits