- Found in:
- Vanilla
eventOnCellAttach()
Description
Wiki Description
Event called when this reference's parent cell is attached.
Documentation Comment
Event received when this object's parent cell is attached
Caveats
CK Wiki - Notes
- Still cannot be used to track the player changing cells, if attached to the player alias.
Examples
Event OnCellAttach()
Debug.Trace("Our parent cell has attached")
endEventAuto-Generated Example
Scriptname MyCoolScript extends ObjectReference
event OnCellAttach()
Debug.trace("Event received - OnCellAttach")
endEvent