IsInFaction - Actor
Revision as of 16:27, 18 October 2011 by imported>Vitamant (1 revision: Clobber re-import by Henning)
Member of: Actor Script
Returns whether this actor is a member of the specified faction or not.
Syntax
bool Function IsInFaction(Faction akFaction) native
Parameters
- akFaction: The Faction to check.
Return Value
Whether the actor is a member of the specified faction or not.
Examples
; Is the guard in the rift faction?
if Guard.IsInFaction(RiftFaction)
Debug.Trace("Guard is in the rift faction")
endIf