IsFactionInCrimeGroup - Faction
Revision as of 15:27, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
Member of: Faction Script
Checks to see if the passed in faction is in this faction's crime group.
Syntax[edit | edit source]
bool Function IsFactionInCrimeGroup(Faction akOther) native
Parameters[edit | edit source]
- akOther: The Faction to check for.
Return Value[edit | edit source]
Whether this faction has the other in its crime group.
Examples[edit | edit source]
; Is the elf faction in the human faction crime group?
if (HumanFaction.IsFactionInCrimeGroup(ElfFaction))
Debug.Trace("Humans care about elf crimes!")
endIf