• 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.

starp41

Recruit
40 Badges
Nov 1, 2022
5
2
  • Europa Universalis IV: Golden Century
  • Europa Universalis IV: Mandate of Heaven
  • Stellaris: Synthetic Dawn
  • Europa Universalis IV: Cradle of Civilization
  • Stellaris: Apocalypse
  • Europa Universalis IV: Rule Britannia
  • Stellaris: Distant Stars
  • Europa Universalis IV: Dharma
  • Stellaris: Megacorp
  • Crusader Kings II: Holy Fury
  • Stellaris - Path to Destruction bundle
  • Imperator: Rome Deluxe Edition
  • Imperator: Rome
  • Stellaris: Ancient Relics
  • Stellaris: Federations
  • Crusader Kings III
  • Crusader Kings III: Royal Edition
  • Europa Universalis 4: Emperor
  • Stellaris: Nemesis
  • Victoria 3 Sign Up
  • Victoria 2: A House Divided
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Sword of Islam
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Res Publica
  • Victoria 2
  • Crusader Kings II
  • Victoria 2: Heart of Darkness
  • Europa Universalis IV: El Dorado
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Mare Nostrum
  • Stellaris
  • Europa Universalis IV: Rights of Man
  • Stellaris: Leviathans Story Pack
France is currently overpowered and although there are few reasons for that (some of them addressed by some mods already such as the treaty ports in the British market), the population growth is another one.

I'm new to modding, and althought I know exactly the modifications I want to trigger, I don't know how to combine them nor have them actually active in the game.

Identifiying French regions
Code:
    any_scope_state = {
        state_region = {
            is_homeland = french
        }
    }

Modifying birth_rate (actual value is high for testing purposes)
Code:
    state_birth_rate_mult = -0.95
    }

PS. I don't care about making a steam mod out of it. Maybe if I get it to work. Right now I would like to make this work even if modifying files directly in the directory.
 
  • 1Like
Reactions:
Could it be something like this? Copied the method from 00_default_strategy"

Code:
state_birth_rate_mult = {
    if = {
        any_scope_state = {
                state_region = {
                        is_homeland = french
                }
            }
    }
    add = -0.95
}