eventOnSit(ObjectReferenceakFurniture)
Description
Wiki Description
Event called when this actor sits on a piece of furniture.
Documentation Comment
Event that is triggered when this actor sits in the furniture
Caveats
CK Wiki - Notes
- This event fires three separate times when activating Power Armor. First when inserting the Fusion Core, again when entering the Power Armor, and finally when exiting the Power Armor. The last two are to be expected, but a modder may not expect this to fire on Fusion Core insertions, thus one should check first if the power armor already contains a Fusion Core, or use another measure to handle the extra firing of this event.
Parameters
Examples
Event OnSit(ObjectReference akFurniture)
Debug.Trace("We just sat on " + akFurniture)
endEventAuto-Generated Example
Scriptname MyCoolScript extends Actor
event OnSit(ObjectReference akFurniture)
Debug.trace("Event received - OnSit: akFurniture = " + akFurniture)
endEventRelated Pages
- Actor
- Actor.OnGetUp(...)
- ObjectReference
