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

crazymonky123

Private
42 Badges
May 4, 2009
22
1
  • Crusader Kings II: Charlemagne
  • Stellaris - Path to Destruction bundle
  • Rome: Vae Victis
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Rome Gold
  • Europa Universalis: Rome
  • Victoria: Revolutions
  • Magicka
  • Lead and Gold
  • Heir to the Throne
  • For The Glory
  • Divine Wind
  • Europa Universalis III Complete
  • Europa Universalis IV
  • Darkest Hour
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II
  • Hearts of Iron IV: Cadet
  • Imperator: Rome
  • Crusader Kings II: Reapers Due
  • Stellaris: Leviathans Story Pack
  • Crusader Kings II: Monks and Mystics
  • Age of Wonders III
  • Crusader Kings II: Jade Dragon
  • Shadowrun Returns
  • Stellaris
  • Crusader Kings II: Conclave
  • Crusader Kings II: Horse Lords
  • Pillars of Eternity
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: Pre-order
  • 500k Club
  • Victoria 2
  • Europa Universalis III Complete
  • Europa Universalis III Complete
Ok, first if this is in the wrong place tell me, or if you are a moderator move it. Thank you. Second I know I have asked this question a while ago but I dont recall the answer and cant find it in searching.

So here is my question can you make it so that women can hold offices or lead an army? I found this in "title.txt"

Code:
 }
		OR = {
			country = { government = monarchy }
			tag = CAT
			tag = CT2
			tag = SIL
			tag = SI2
			[B]is_female = no[/B]

and have tried changing "is_female = no" to "is_female = yes" but that seems to make it so that only women can be generals so I tried adding "is_male = yes" but that for some reason makes it so I cant make anyone generals. I then removed both "is_female = yes" and "is_male = yes" but it had no effect. If anyone could tell me what I'm doing wrong that would be awsome. Thanks in advance.

Crazymonky123
 

Cheexsta

Veni, vidi, vici
60 Badges
Dec 22, 2005
2.894
59
  • Europa Universalis IV: Rights of Man
  • Rome: Vae Victis
  • 500k Club
  • Europa Universalis IV: El Dorado
  • Europa Universalis: Rome Collectors Edition
  • Mount & Blade: Warband
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Mare Nostrum
  • Stellaris
  • Stellaris: Galaxy Edition
  • Stellaris: Galaxy Edition
  • Stellaris Sign-up
  • Victoria 2: Heart of Darkness
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Stellaris - Path to Destruction bundle
  • Europa Universalis IV: Mandate of Heaven
  • Europa Universalis IV: Third Rome
  • Stellaris: Synthetic Dawn
  • Europa Universalis IV: Cradle of Civilization
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Europa Universalis IV: Rule Britannia
  • Stellaris: Distant Stars
  • Stellaris: Nemesis
  • Europa Universalis IV: Conquest of Paradise
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Europa Universalis III
  • Europa Universalis III: Chronicles
  • Divine Wind
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Crusader Kings II
  • Europa Universalis IV: Wealth of Nations
  • Heir to the Throne
  • Europa Universalis III Complete
  • Magicka
  • Europa Universalis III Complete
  • Europa Universalis IV: Res Publica
  • Victoria: Revolutions
  • Europa Universalis: Rome
  • Rome Gold
  • Victoria 2
is_male = yes is not a valid trigger, so that wouldn't work.

If you want anyone to be a general, just remove the whole OR section. The title_general triggers should then look like this:

Code:
title_general = {
	allow = {
		age = 18
		in_command = no
		is_governor = no
		has_tech_office = no
		prisoner = no
		OR = {
			country = { government = monarchy }
			country = { government = tribal }
			is_ruler = yes
			has_title = title_ex_general
			has_title = title_ex_ruler
			has_title = title_pro_ruler
			has_title = title_ex_civic_tech
			has_title = title_pro_civic_tech
			has_title = title_ex_censor
		}
	}

Hope that helps.