Difference between revisions of "TryToReset - ReferenceAlias"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Jlundin
(No difference)

Revision as of 13:53, 26 October 2011

Member of: ReferenceAlias Script

This is a convenient way to reset a reference in an alias without calling GetReference() on it. It's mostly useful in cases where you have lots of aliases that may or may not be filled and you want to call Reset() on them without having to test for a reference being present first.

Syntax

bool Function TryToReset()

Parameters

None

Return Value

True if the reference was reset, false if there was no reference to reset.

Examples

; Try to reset the chest
ChestAlias.TryToReset()

See Also