• 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.
Nov 23, 2005
539
1
I am modding IC for Japan and Italy in DH Full 1936 scenario. I feel both are underpowered.
I am trying to beef them up by giving them more IC. For Japan this is no problem.

I added these lines to the japan.inc
##############################
# Country definition for JAP #
##############################
# MvdM extra IC based on 1940 scenario
province = { id = 1552 ic = 8 } # Tokyo
province = { id = 1553 ic = 4 } # Osaka
province = { id = 1557 ic = 4 } # Nagoya
province = { id = 1559 ic = 4 } # Matsuyama
province = { id = 1549 ic = 3 } # Sendai

Everything is okay, the extra IC appears on the map.

Not so with Italy :(

In the italy.inc file I added these lines:
########################################
# Country definition for ITA by Cardus #
########################################
# MvdM extra IC based on 1940 scenario
province = { id = 396 ic = 6 } # Genoa
province = { id = 398 ic = 3 } # Turin
province = { id = 411 ic = 1 } # Bologna
province = { id = 422 ic = 1 } # Taranto
province = { id = 414 ic = 3 } # Perugia
province = { id = 410 ic = 2 } # Florence

However, the extra IC does not appear! The lines are parsed for sure, but the engine seems to ignore the extra IC nonetheless.

What am I doing wrong? I can add IC no problem for other countries too. Is it because Italy is at war at the start of the 36 scenario?
This is the only difference I can think of with other countries.

Help would be much appreciated; I am a modding noob...
 
I am modding IC for Japan and Italy in DH Full 1936 scenario. I feel both are underpowered.
I am trying to beef them up by giving them more IC. For Japan this is no problem.

I added these lines to the japan.inc
##############################
# Country definition for JAP #
##############################
# MvdM extra IC based on 1940 scenario
province = { id = 1552 ic = 8 } # Tokyo
province = { id = 1553 ic = 4 } # Osaka
province = { id = 1557 ic = 4 } # Nagoya
province = { id = 1559 ic = 4 } # Matsuyama
province = { id = 1549 ic = 3 } # Sendai

Everything is okay, the extra IC appears on the map.

Not so with Italy :(

In the italy.inc file I added these lines:
########################################
# Country definition for ITA by Cardus #
########################################
# MvdM extra IC based on 1940 scenario
province = { id = 396 ic = 6 } # Genoa
province = { id = 398 ic = 3 } # Turin
province = { id = 411 ic = 1 } # Bologna
province = { id = 422 ic = 1 } # Taranto
province = { id = 414 ic = 3 } # Perugia
province = { id = 410 ic = 2 } # Florence

However, the extra IC does not appear! The lines are parsed for sure, but the engine seems to ignore the extra IC nonetheless.

What am I doing wrong? I can add IC no problem for other countries too. Is it because Italy is at war at the start of the 36 scenario?
This is the only difference I can think of with other countries.

Help would be much appreciated; I am a modding noob...

Make sure its the correct file and nothing else is changing then regions.
 
Make sure its the correct file and nothing else is changing then regions.

IC is defined in many different places.

It can be defined inside a scenario's .eug file.

It can be defined within a scenario's provinces file.

It can be defined within a country .inc

It can also be hardcoded on a map in provinces.csv on a map file (Map_1/provinces.csv).

I remember with Italy that the IC of Italy was not coded in Map_1/provinces.csv but rather in the inclusion files (only country to contain that) when I was rebalancing world IC for CG Mod. That's probably why you are seeing this.
 
@Limith
In the map_1/provinces.csv the province with id 396 (Genoa) has 3 IC. If I start the 1933 scenario, I see this 3 on the map.
The 1936 scenario however shows 4 IC. Where does this +1 come from?

As I said in my first post, I was trying to add IC by using the Italy.inc, but that does not work. So I don't understand your last remark in which you say that in the case of Italy,
the IC is coded in the inclusion file...

I am still confused :confused:

So if anybody can give directions how to add IC for Italian provinces I would be much obliged.

Thanks for replying.