IsLoaded - Location
From Creation Kit
Member of: Location Script
Returns if this location is loaded or not.
Syntax
bool Function IsLoaded() native
Parameters
None.
Return Value
Whether this location is loaded or not. A location is loaded if any of its cells are loaded.
Examples
; Is this location loaded? if (MyHouseProperty.IsLoaded()) Debug.Trace("My house is loaded") endIf