GetParentCell - ObjectReference

From the CreationKit Wiki
Revision as of 18:23, 4 July 2015 by imported>Bug64 (Added link to Cell Script)
Jump to navigation Jump to search

Member of: ObjectReference Script

Obtains the Cell this object is currently in.

Syntax

Cell Function GetParentCell() native

Parameters

None

Return Value

The Cell the object is currently in.

Examples

; Is this object and the player in the same cell?
if (PinkPony.GetParentCell() == Game.GetPlayer().GetParentCell())
  Debug.Trace("We are in the same cell with the pink pony")
endIf

Notes

If the reference is in an unloaded exterior cell, this function will return None.

See Also