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

Imperator1993

Southern Byzantophile
73 Badges
Dec 5, 2010
1.125
61
  • Hearts of Iron II: Armageddon
  • Rome: Vae Victis
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Sengoku
  • Semper Fi
  • Rome Gold
  • Europa Universalis: Rome
  • Iron Cross
  • Heir to the Throne
  • Hearts of Iron III
  • For the Motherland
  • Divine Wind
  • Europa Universalis III Complete
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Sunset Invasion
  • Darkest Hour
  • Crusader Kings II
  • Arsenal of Democracy
  • Deus Vult
  • Pride of Nations
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Way of Life
  • Rise of Prussia
  • Europa Universalis IV: Rights of Man
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Conclave
  • Achtung Panzer
  • Tyranny: Archon Edition
  • Hearts of Iron IV: Cadet
  • Crusader Kings II: Reapers Due
  • Europa Universalis IV: Mandate of Heaven
  • Hearts of Iron IV: Expansion Pass
  • Europa Universalis IV: El Dorado
  • 500k Club
  • Victoria 2
  • Hearts of Iron IV: Together for Victory
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Hearts of Iron 4: Arms Against Tyranny
  • Crusader Kings II: Monks and Mystics
  • Hearts of Iron IV: Death or Dishonor
  • Europa Universalis IV: Cradle of Civilization
I seem to notice a trend every time I play the Conqueror that both Visenya and Rhaenys both keep going off on adventures to found there own realm.

Its quite annoying considering it makes having heirs difficult and its unrealistic. Is there a way I can change this stop them? What file do I need to mess with?
 
  • 6
Reactions:
I personally have just forbidden women from doing it because that is typically the most common occurrence as well as the most irritating.

Go to Documents\Paradox Interactive\Crusader Kings II\mod\A Game of Thrones\events

open adventures_the_old_gods.txt using notepad++ and add is_female = no to the conditions of the very first event listed, so it would look like:

Code:
# AGOT Landless Adventurer Master Event
character_event = {
    id = TOG.1299
    desc = OK
    picture = GFX_evt_crusaders
    border = GFX_event_normal_frame_war
   
    is_triggered_only = yes
    hide_window = yes # Only fires for unplayable landless characters
   
    min_age = 20
    max_age = 25
    capable_only = yes
    prisoner = no
    is_female = no
 
I personally have just forbidden women from doing it because that is typically the most common occurrence as well as the most irritating.

Go to Documents\Paradox Interactive\Crusader Kings II\mod\A Game of Thrones\events

open adventures_the_old_gods.txt using notepad++ and add is_female = no to the conditions of the very first event listed, so it would look like:

Code:
# AGOT Landless Adventurer Master Event
character_event = {
    id = TOG.1299
    desc = OK
    picture = GFX_evt_crusaders
    border = GFX_event_normal_frame_war

    is_triggered_only = yes
    hide_window = yes # Only fires for unplayable landless characters

    min_age = 20
    max_age = 25
    capable_only = yes
    prisoner = no
    is_female = no

I think you might have to be careful with this if you play the later scenarios, though, because preventing female characters from going on adventures could block Dany from invading Westeros. I don't claim to be an expert on that event chain, but it seems to often go awry (e.g. she gets deposed from Meereen) and the adventurer mechanic still lets her launch an invasion using one of her claims. Perhaps something a bit more subtle, like the code below, might work better?

Code:
OR = {
   is_female = no
   spouse = {
      is_landed = no
   }
}

This means that only men, or women with an unlanded husband, can go on adventures.
 
  • 2
Reactions:
Aegon's sisters usually going on adventure conquests, giving them the "adventurer" trait and a "Rhaenys/Visenya host" army. Dany on the other had has event, not adventure-based armies and stuff. So disabling females from going on adventure conquests won't stop the Dany and Aegon invasion events.