I see there is a command to add a core for a single province but is there one out there to add an entire region as a nations core?






























I see there is a command to add a core for a single province but is there one out there to add an entire region as a nations core?
- Check out my March of the Eagles mod: The Gods
- When I speak in Cyan its as a Demi-Moderator. Please review the following links: FAQ / Forum Rules / General Usage
Just put the add core effect inside a region scope.
Victoria 2 Pop Maker Utility:
http://forum.paradoxplaza.com/forum/...-Maker-Utility
Victoria 2 Order Of Battle Maker Utility:
http://forum.paradoxplaza.com/forum/...-Maker-Utility
Victoria 2 Savegame Analyser Utility:
http://forum.paradoxplaza.com/forum/showthread.php?638277-Victoria-2-AHD-Savegame-Analyser






























- Check out my March of the Eagles mod: The Gods
- When I speak in Cyan its as a Demi-Moderator. Please review the following links: FAQ / Forum Rules / General Usage
state_scope = {
any_owned = {
add_core = CSA
}
}
For every subtle and complicated question, there is a simple and straightforward answer, which is wrong.
Creator of PDM:APD for A House divided 2.31: http://forum.paradoxplaza.com/forum/...POP-Demand-Mod
Aaaaaaaaaaaaaaaaaaaand Creator of '1792' for March of the Eagles: http://forum.paradoxplaza.com/forum/...69074-1792-mod






























Thanks! This will be a great help.
- Check out my March of the Eagles mod: The Gods
- When I speak in Cyan its as a Demi-Moderator. Please review the following links: FAQ / Forum Rules / General Usage






























- Check out my March of the Eagles mod: The Gods
- When I speak in Cyan its as a Demi-Moderator. Please review the following links: FAQ / Forum Rules / General Usage
Only be using the region code. If you open the regions.txt file in the map folder, you can see them-- each has the region code followed by the province id#'s that are in that region. You can scope to the region directly... so using "USA_1 = { add_core = CSA }" would add CSA cores to the entire Alaska region regardless of whether you own the provinces or not.






























- Check out my March of the Eagles mod: The Gods
- When I speak in Cyan its as a Demi-Moderator. Please review the following links: FAQ / Forum Rules / General Usage
For every subtle and complicated question, there is a simple and straightforward answer, which is wrong.
Creator of PDM:APD for A House divided 2.31: http://forum.paradoxplaza.com/forum/...POP-Demand-Mod
Aaaaaaaaaaaaaaaaaaaand Creator of '1792' for March of the Eagles: http://forum.paradoxplaza.com/forum/...69074-1792-mod
well I just incorporated it into an existing event.
country_event = {
id = 18540
title = "EVTNAME18540"
desc = "EVTDESC18540"
picture = "Expansion"
trigger = {
nationalvalue = nv_liberty
badboy = 0.7
}
mean_time_to_happen = {
months = 200
}
option = {
state_scope = {
any_owned = {
add_core = GER
}
}
}
option = {
name = "EVTOPTA18540"
badboy = -30
any_pop = {dominant_issue = {factor = 0.2 value = jingoism } }
As you can see it has two options one for the above mentioned effect, the other I use more regularely
Ah, if you're using a country event then you'll need to set additional scoping. Try:
Code:any_owned_province = { option = { state_scope = { any_owned = { add_core = GER } } } }
For every subtle and complicated question, there is a simple and straightforward answer, which is wrong.
Creator of PDM:APD for A House divided 2.31: http://forum.paradoxplaza.com/forum/...POP-Demand-Mod
Aaaaaaaaaaaaaaaaaaaand Creator of '1792' for March of the Eagles: http://forum.paradoxplaza.com/forum/...69074-1792-mod
would you mind writing the wole thing for me please, my combinations still don't seem to work![]()
What is it you're seeking to achieve? Just adding German cores to every province you own?
For every subtle and complicated question, there is a simple and straightforward answer, which is wrong.
Creator of PDM:APD for A House divided 2.31: http://forum.paradoxplaza.com/forum/...POP-Demand-Mod
Aaaaaaaaaaaaaaaaaaaand Creator of '1792' for March of the Eagles: http://forum.paradoxplaza.com/forum/...69074-1792-mod
well yeah. One option does that, the other removes 30 badboy. xD
No need for the state scope at all, then.
That ought to do it.Code:country_event = { id = 18540 title = "EVTNAME18540" desc = "EVTDESC18540" picture = "Expansion" trigger = { nationalvalue = nv_liberty badboy = 0.7 } mean_time_to_happen = { months = 200 } option = { any_owned = { add_core = GER } } option = { name = "EVTOPTA18540" badboy = -30 any_pop = { dominant_issue = { factor = 0.2 value = jingoism } } } }
For every subtle and complicated question, there is a simple and straightforward answer, which is wrong.
Creator of PDM:APD for A House divided 2.31: http://forum.paradoxplaza.com/forum/...POP-Demand-Mod
Aaaaaaaaaaaaaaaaaaaand Creator of '1792' for March of the Eagles: http://forum.paradoxplaza.com/forum/...69074-1792-mod
I find it quite funny that you would probably get cores on the USA and possibly other countries should they go over .7 badboy. ^^
You might wanna consider adding a tag = GER to the trigger section.