Hoi4 modding Wiki
Advertisement
any_other_country = { 
    has_political_power > 300
} 

Checks if one or more other countries have more than 300 political power.

Extra[]

NOT = { any_other_country = { 
    has_political_power > 300
} }

The above means: if every country has less than 301 political power.

any_other_country = { 
    NOT = { has_political_power > 300 }
} 

The above means: if any country has less than 301 political power.

NOT = { any_other_country = { 
    NOT = { has_political_power > 300 }
} }

The above means: if every country has more than 300 political power. Because every_other_country cannot be used for triggers, this is a workaround with which you can use any_other_country for that purpose instead.

Advertisement