Resource:Creation Kit > SetFactionRank - Actor
Member of: Resource:Creation Kit/Actor Script
Sets this actor's rank in the specified faction. Adds the actor to the faction if necessary.
Syntax[edit]
Function SetFactionRank(Faction akFaction, int aiRank) native
Parameters[edit]
- akFaction: The Faction to set this actor's rank in.
- aiRank: The rank in the faction the actor should be.
Return Value[edit]
None.
Examples[edit]
; Set the empire faction rank for Luke to 0 Luke.SetFactionRank(EmpireFaction, 0)
