TryToDisableNoWait - ReferenceAlias

From the CreationKit Wiki
Jump to navigation Jump to search

Member of: ReferenceAlias Script

This is a convenient way to disable a reference (without waiting for it to diable) 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 DisableNoWait() on them without having to test for a reference being present first.

Syntax[edit | edit source]

bool Function TryToDisableNoWait()
	ObjectReference Ref = GetReference()
	if Ref
		Ref.DisableNoWait()
		Return True
	EndIf
	Return False
EndFunction

Parameters[edit | edit source]

None

Return Value[edit | edit source]

True if the reference was disabled, false if there was no reference to disable.

Examples[edit | edit source]

; Disable the barrier, but don't wait for it to be disabled
BarrierAlias.DisableNoWait()

See Also[edit | edit source]