Difference between revisions of "TryToEnableNoWait - ReferenceAlias"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Jlundin
 
imported>Thingy Person
 
Line 8: Line 8:
<source lang="papyrus">
<source lang="papyrus">
bool Function TryToEnableNoWait()
bool Function TryToEnableNoWait()
ObjectReference Ref = GetReference()
if Ref
Ref.EnableNoWait()
Return True
EndIf
Return False
EndFunction
</source>
</source>



Latest revision as of 16:26, 29 June 2013

Member of: ReferenceAlias Script

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

Syntax[edit | edit source]

bool Function TryToEnableNoWait()
	ObjectReference Ref = GetReference()
	if Ref
		Ref.EnableNoWait()
		Return True
	EndIf
	Return False
EndFunction

Parameters[edit | edit source]

None

Return Value[edit | edit source]

True if the object was requested to enable, false if no object was there to be enabled.

Examples[edit | edit source]

; Attempt to enable the cool thing without waiting on it to finish
CoolAlias.TryToEnableNoWait()

See Also[edit | edit source]