• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Stahl-Opa

Marshall & Grossadmiral of Helvetia
72 Badges
Jun 16, 2011
749
169
www.vmods.org
  • Victoria 2: A House Divided
  • Europa Universalis IV: Call to arms event
  • Gettysburg
  • Heir to the Throne
  • King Arthur II
  • Leviathan: Warships
  • Magicka
  • Europa Universalis IV: Res Publica
  • Victoria: Revolutions
  • Crusader Kings II: Charlemagne
  • Victoria 2: Heart of Darkness
  • Warlock 2: Wrath of the Nagas
  • Pillars of Eternity
  • Europa Universalis IV: Mare Nostrum
  • Stellaris: Galaxy Edition
  • Crusader Kings II: Reapers Due
  • Stellaris: Synthetic Dawn
  • Europa Universalis IV: Conquest of Paradise
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Darkest Hour
  • Europa Universalis III
  • Europa Universalis III: Chronicles
  • Europa Universalis III Complete
  • Divine Wind
  • Europa Universalis IV: Wealth of Nations
  • Crusader Kings II
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Third Rome
  • BATTLETECH
  • Stellaris: Nemesis
  • Age of Wonders III
  • Age of Wonders: Shadow Magic
  • Crusader Kings II: Jade Dragon
  • Stellaris - Path to Destruction bundle
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Europa Universalis IV: Rule Britannia
  • BATTLETECH - Digital Deluxe Edition
  • Stellaris: Distant Stars
  • Stellaris: Megacorp
  • Crusader Kings II: Holy Fury
  • Europa Universalis IV: Golden Century
  • Stellaris: Ancient Relics
  • Stellaris: Lithoids
Hi guys,

I have something in mind, but I'm not sure how to do this...

So, what I Need is a check of the relative MP.

*If Country XY has (YX% of MP on Map) then do Z*

So, as we all know you can add an relative amount of MP with the specific command. But afaik there is no trigger to check it?

Is there something which works like that?
How I maybe could do it otherwise?

Greez
 
I don't think such trigger exists. Regarding manpower there is only an "absolute" trigger:

Code:
manpower = x         (>=x)    #true if a nation have at least that amount of manpower.

This can be used to the same effect, but it would require a complex set of country specific triggers (WARNING: I'm writing this from memory, syntax may be erroneous):

Code:
trigger = { OR = {

AND = { country = XXX manpower = N }
AND = { country = YYY manpower = M }

}}
 
I was afraid of that.

To use Country specific triggers is not possible, since the Thing I want to do have to be more flexible .
(if Country Y conquers X, is has a larger base MP, thus Manpower = M have to be "Manpower = (M+N)").

alright, seems that I have tio rethink the concept and go another way :S