Wiki

trigger · network_national_coverage

Definition

  • Supported scope:COUNTRY
  • Supported target:none

Description

checks network national coverage you have over a country. Example: 
network_national_coverage = { 
 target = GER
 value > 0.5
}

实战 · 配合 · 坑

实战内容由 AI 生成,并已对照 vanilla 命令词表校验 —— 请当作起点而非权威依据。上方的定义节才是游戏自带文档原文。

实战用法

network_national_coverage 常用于间谍/情报题材 mod 中,判断玩家或 AI 是否已对某国建立足够的情报网络覆盖,从而解锁特定决策、事件或任务。例如,当对德国的网络覆盖超过 50% 时才允许触发渗透相关决策:

available = {
    network_national_coverage = {
        target = GER
        value > 0.5
    }
}

配合关系

  • [has_active_mission](/wiki/trigger/has_active_mission):情报任务激活状态常与网络覆盖率联合判断,只有在派遣了活跃任务且覆盖达标时才触发后续奖励。
  • [compare_intel_with](/wiki/trigger/compare_intel_with):两者常同时作为情报类决策的 available 条件,前者检查网络广度,后者检查情报质量,形成双重门槛。
  • [add_intel](/wiki/effect/add_intel):在覆盖率满足条件后,作为 effect 奖励给予情报值,逻辑上形成"网络到位 → 情报收益"的完整流程。
  • [add_operation_token](/wiki/effect/add_operation_token):当覆盖率满足阈值时发放行动令牌,驱动后续秘密行动,是情报线剧情的标准搭配。

常见坑

  1. target 写成国家标签字符串而非正确引用target 字段接受的是国家 TAG(如 GER),而不是 scope 变量或字符串加引号的形式,初学者有时会错误写成 target = "GER" 导致解析失败或条件永不成立。
  2. value 的比较符写成等号:覆盖率是浮点数,使用 value = 0.5 几乎永远为假;应使用 value > 0.5value >= 0.5 这样的比较运算符才能正确判断阈值范围。

Hands-On Notes

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.

Hands-On Usage

network_national_coverage is commonly used in espionage/intelligence-themed mods to determine whether the player or AI has established sufficient intelligence network coverage over a target nation, thereby unlocking specific decisions, events, or missions. For example, allowing a penetration-related decision to trigger only when network coverage of Germany exceeds 50%:

available = {
    network_national_coverage = {
        target = GER
        value > 0.5
    }
}

Synergy

  • [has_active_mission](/wiki/trigger/has_active_mission): The activation status of intelligence missions is often evaluated jointly with network coverage rate; subsequent rewards trigger only when an active mission has been dispatched and coverage meets the threshold.
  • [compare_intel_with](/wiki/trigger/compare_intel_with): Both are commonly used simultaneously as available conditions for intelligence-related decisions, with the former checking network breadth and the latter checking intelligence quality, forming a dual-threshold system.
  • [add_intel](/wiki/effect/add_intel): After coverage rate conditions are satisfied, intelligence points are awarded as an effect reward, logically forming a complete flow of "network established → intelligence gain".
  • [add_operation_token](/wiki/effect/add_operation_token): When coverage rate meets the threshold, operation tokens are issued to drive subsequent covert operations, serving as the standard pairing for intelligence narrative arcs.

Common Pitfalls

  1. Writing target as a country tag string instead of a proper reference: The target field accepts country TAGs (e.g., GER), not scope variables or quoted string forms. Beginners sometimes mistakenly write target = "GER", causing parsing failures or conditions that never evaluate to true.
  2. Using an equals sign for the value comparison operator: Coverage rate is a floating-point number, so value = 0.5 will almost always evaluate to false; use comparison operators like value > 0.5 or value >= 0.5 to properly evaluate threshold ranges.