• 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.
Not sure, but I think you're asking one of the two following questions:

2) How do you mod a nation's forcelimit? The answer: Add a triggered modifier that looks like this:
Code:
yadda_yadda = {
	trigger = {
		tag = ROM


	}

	land_forcelimit_modifier = 1.0      ###1.0 = +100%, i.e. doubled###

	icon = 3
}
to the end of the common/triggered_modifiers.txt file.

Set the "tag =" to whatever nation you want (tags can be found in countries.txt, sorted by region) and the percentage increase to whatever you want it to be
0.1 = +10%, 0.5 = +50% etc.

1) How do you increase your forcelimit ingame? The answer = conquer/colonize more provinces, more provinces = higher forcelimit.
 
PanzerWilly said:
Is it possible to mod it so that it is increased globally. As in a similar fix to the research bug.

Thanks for the swift replies ;) !!
Even if its not possible to do it globally you can allways do it (locally?) for every nation which is basically the same thing.
 
You could change the trigger for that modifier I posted to something like this:
Code:
	trigger = {
                num_of_cities = 1
	}

This would apply globally.
 
Let me clarify. Is it possible to increase the force limit by changing a modifier or ratio. For example, a lot of people suggest changing the RP modifier from 1.0 to 2.5. It is a short term fix but it works for all nations. Is there a modifier for force limits that can be similarly changed without having to add an event for every nation.
 
PanzerWilly said:
Let me clarify. Is it possible to increase the force limit by changing a modifier or ratio. For example, a lot of people suggest changing the RP modifier from 1.0 to 2.5. It is a short term fix but it works for all nations. Is there a modifier for force limits that can be similarly changed without having to add an event for every nation.

No, there is no single number you can change for this. See above for a modifier that will apply to every nation.
 
Last edited: