TryToRemoveFromFaction - ReferenceAlias

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.

SyntaxEdit

bool Function TryToRemoveFromFaction(Faction FactionToRemoveFrom)
	Actor ActorRef = GetActorReference()
	if ActorRef
		ActorRef.RemoveFromFaction(FactionToRemoveFrom)
		Return True
	EndIf
	Return False
EndFunction

ParametersEdit

  • FactionToRemoveFrom: The faction to remove the actor from

Return ValueEdit

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

ExamplesEdit

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

See AlsoEdit