TryToRemoveFromFaction - ReferenceAlias
Revision as of 13:50, 26 October 2011 by imported>Plplecuyer (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...")
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[edit | edit source]
bool Function TryToRemoveFromFaction(Faction FactionToRemoveFrom)
Parameters[edit | edit source]
- FactionToRemoveFrom: The faction to remove the actor from
Return Value[edit | edit source]
True if actor was removed from the faction, false if there was no actor to remove.
Examples[edit | edit source]
; Try to remove the boss from the bandit faction
BossAlias.TryToRemoveFromFaction(BanditFaction)