TryToMoveTo - ReferenceAlias

From the CreationKit Wiki
Revision as of 13:53, 11 November 2011 by imported>Scornett (Reverted edits by Scornett-Bot (talk) to last revision by Jlundin)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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.

Syntax

bool Function TryToMoveTo(ObjectReference RefToMoveTo)

Parameters

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

Return Value

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

Examples

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

See Also