TryToMoveTo - ReferenceAlias

Member of: ReferenceAlias Script

This is a convenient way to move 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 MoveTo() on them without having to test for a object reference being present first.

SyntaxEdit

bool Function TryToMoveTo(ObjectReference RefToMoveTo)
	ObjectReference Ref = GetReference()
	if Ref
		Ref.MoveTo(RefToMoveTo)
		Return True
	EndIf
	Return False
EndFunction

ParametersEdit

  • RefToMoveTo: The reference to move this alias's reference to

Return ValueEdit

True if the reference was moved, false if there was no reference to move

ExamplesEdit

; Move the bandit to his marker
BanditAlias.TryToMoveTo(MarkerRef)

See AlsoEdit