trigger · faction_influence_rank
Definition
- Supported scope:
COUNTRY - Supported target:
any
Description
Checks influence rank in the faction of the current country
### Examples
TAG = { faction_influence_rank < 5 }
faction_influence_rankCOUNTRYanyChecks influence rank in the faction of the current country
### Examples
TAG = { faction_influence_rank < 5 }
Hands-on notes are AI-generated and checked against the vanilla command vocabulary — treat them as a starting point, not authoritative reference. The definition above is the game's own documentation.
faction_influence_rank is commonly used in mods involving intra-faction political mechanics, such as determining whether a nation's influence ranking within a faction is high enough to unlock specific decisions or national focus options. Typical scenario: when a minor nation wants to challenge the faction leader's position, it must first accumulate a sufficiently high influence rank to trigger the relevant event chain.
# Can only initiate "Seize Leadership" decision when this nation ranks in top 3 of faction
available = {
is_faction_leader = no
faction_influence_rank < 4
}
[faction_influence_score](/wiki/trigger/faction_influence_score): Usually paired with rank checks—the former validates concrete influence score thresholds while the latter checks relative ranking. Combined, they precisely express conditions like "sufficient score AND high enough rank."[faction_influence_ratio](/wiki/trigger/faction_influence_ratio): Checks what percentage of total faction influence this nation holds. Complements rank checks—high rank with low ratio indicates faction members have comparable power, useful for branching storylines accordingly.[add_faction_influence_score](/wiki/effect/add_faction_influence_score): In effect blocks, adds or subtracts influence score for a nation. Often serves as reward or penalty after rank conditions are met, forming a closed loop: "reach rank → trigger event → adjust score."[add_faction_influence_ratio](/wiki/effect/add_faction_influence_ratio): Paired with rank triggers; syncs ratio adjustments when a nation's rank shifts, maintaining numerical consistency within faction dynamics.faction_influence_rank < 2 means rank 1st (lower numbers = higher rank). Beginners often assume higher values are better, inverting condition logic and causing triggers to always fire or never fire.is_in_faction = yes at the outer level.