Difference between revisions of "IsCleared - Location"
Jump to navigation
Jump to search
imported>Rhavlovick m (1 revision: Clobber re-import by Henning) |
imported>Terra Nova2 |
||
Line 23: | Line 23: | ||
endIf | endIf | ||
</source> | </source> | ||
== Notes == | |||
* Needs more testing. It appears this does not work as intended. | |||
== See Also == | == See Also == | ||
*[[Location Script]] | *[[Location Script]] |
Revision as of 09:37, 26 November 2014
Member of: Location Script
Returns if this location is flagged as cleared or not.
Syntax
bool Function IsCleared() native
Parameters
None.
Return Value
Whether this location is flagged as cleared or not.
Examples
; Is this location cleared?
if (MyHouseProperty.IsCleared())
Debug.Trace("My house is cleared")
endIf
Notes
- Needs more testing. It appears this does not work as intended.