TryToRemoveFromFaction - ReferenceAlias

From the CreationKit Wiki
Revision as of 13:50, 26 October 2011 by imported>Jlundin (Created page with "Category:Scripting Category:Papyrus '''Member of:''' ReferenceAlias Script This is a convenient way to remove an actor in an alias from a faction without calling [[G...")
(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 remove an actor in an alias from a faction without calling GetActorReference() 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 RemoveFromFaction() on them without having to test for a reference being present first.

Syntax

bool Function TryToRemoveFromFaction(Faction FactionToRemoveFrom)

Parameters

  • FactionToRemoveFrom: The faction to remove the actor from

Return Value

True if actor was removed from the faction, false if there was no actor to remove.

Examples

; Try to remove the boss from the bandit faction
BossAlias.TryToRemoveFromFaction(BanditFaction)

See Also