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

joespaniel

Old Soldier
3 Badges
Aug 14, 2003
285
6
  • Arsenal of Democracy
  • Hearts of Iron II: Armageddon
  • Darkest Hour
In db/ministers/minister_modifiers.txt, can more personalities be added to the file without breaking anything?

And what about the config/text.txt? Is it safe to add descriptions of the new personalities to that file?
 
Last edited:
it's possible to add new minister personalities, but no idea where to put the text. adding national ideas is easier, though.
 
You can add as many new personalities as you like...

Example...of my new "charismatic leader" minister.

Open config text file and add this...
NPERSONALITY_CHARISMATIC_LEADER;Charismatic Leader;;;;;;;;;;X

Then open the minister_modifiers text in the db/ministers folder, and add this...
personality = {
personality_string = "Charismatic Leader"
name = "NPERSONALITY_CHARISMATIC_LEADER"
desc = "NPERSONALITY_CHARISMATIC_LEADER"
minister_position = HeadOfState
modifier = { type = dissent_mod modifier_effect = 0.20 }
modifier = { type = org_mod modifier_effect = 0.03 }
modifier = { type = morale_mod modifier_effect = 0.10 }
modifier = { type = unit_speed_mod modifier_effect = 0.03 }
modifier = { type = attack_land_mod modifier_effect = 0.03 }
modifier = { type = defend_land_mod modifier_effect = 0.05 }
modifier = { type = attack_air_mod modifier_effect = 0.02 }
modifier = { type = defend_air_mod modifier_effect = 0.02 }
modifier = { type = attack_sea_mod modifier_effect = 0.02 }
modifier = { type = defend_sea_mod modifier_effect = 0.02 }
modifier = { type = stand_ground_dissent_mod modifier_effect = -0.2 }
modifier = { type = production_category_mod modifier_effect = 0.05 }
modifier = { type = tech_group_mod modifier_effect = 0.05 }
modifier = { type = resource_mod modifier_effect = 0.05 }
modifier = { type = province_project_mod modifier_effect = 0.05 }
modifier = { type = intelligence_mod modifier_effect = 0.05 } }


Then open the minister file of the country of your choice and make the head of state A CHARISMATIC LEADER !!! :)

Make sure that you have a good look in the contents of minister_modifiers text file...which is a guide of all the minister traits !!!
 
One thing you might want to change:

Code:
modifier = { type = dissent_mod modifier_effect = 0.20 }

That should have a "-0.20" modifier to produce a bonus. Pretty sure the way it is now is actually a penalty.

dissent_mod modifier_effect changes your daily dissent reduction rate. I don't know what else it does, if anything.
 
One thing you might want to change:

Code:
modifier = { type = dissent_mod modifier_effect = 0.20 }

That should have a "-0.20" modifier to produce a bonus. Pretty sure the way it is now is actually a penalty.

dissent_mod modifier_effect changes your daily dissent reduction rate. I don't know what else it does, if anything.

Yes, you are right !

You see, i spend all my time modding AoD and never have time to actually play and really test it !!! LOL