GetFactionReaction - Faction
From Creation Kit
Member of: Faction Script
Get the faction-based reaction between this faction and an actor.
Syntax
int Function GetFactionReaction(Actor akOther) native
Parameters
- akOther: The other actor to determine our faction-based reaction with.
Return Value
The faction-based reaction between the a faction and an actor.
The following values are returned:
- 0: Neutral
- 1: Enemy
- 2: Ally
- 3: Friend
Examples
; Print a message if Jake's faction is a friend of the radier faction if (RaiderFaction.GetFactionReaction(Jake) == 3) ; 3 = Friend Debug.Trace("Raider Faction is a friend of Jake") endIf