HasEverBeenCleared - Location
Jump to navigation
Jump to search
Member of: Location Script
Returns if this location has ever been cleared.
Syntax[edit | edit source]
bool Function HasEverBeenCleared() native
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
Whether this location has ever been cleared.
Examples[edit | edit source]
; Has this location ever been cleared?
if (!MyHouseProperty.IsCleared() && MyHouseProperty.HasEverBeenCleared())
Debug.Trace("My house is not cleared any more.")
endIf