TryToReset - ReferenceAlias
Revision as of 16:29, 29 June 2013 by imported>Thingy Person (→Syntax)
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[edit | edit source]
bool Function TryToReset()
ObjectReference Ref = GetReference()
if Ref
Ref.Reset()
Return True
EndIf
Return False
EndFunction
Parameters[edit | edit source]
None
Return Value[edit | edit source]
True if the reference was reset, false if there was no reference to reset.
Examples[edit | edit source]
; Try to reset the chest
ChestAlias.TryToReset()