eventOnGetUp(ObjectReferenceakFurniture)
Description
Wiki Description
Event called when this actor gets up from a piece of furniture.
Documentation Comment
Event that is triggered when this actor leaves the furniture
Parameters
Examples
Event OnGetUp(ObjectReference akFurniture)
Debug.Trace("We just got up from " + akFurniture)
endEventAuto-Generated Example
Scriptname MyCoolScript extends Actor
event OnGetUp(ObjectReference akFurniture)
Debug.trace("Event received - OnGetUp: akFurniture = " + akFurniture)
endEvent