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

plath

Recruit
50 Badges
Jan 28, 2020
8
1
  • Hearts of Iron IV: Cadet
  • Age of Wonders III
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Conclave
  • Stellaris: Synthetic Dawn
  • Stellaris
  • Europa Universalis IV: El Dorado
  • Crusader Kings II: Reapers Due
  • Europa Universalis IV: Rights of Man
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Crusader Kings II: Monks and Mystics
  • Stellaris - Path to Destruction bundle
  • Europa Universalis IV: Mandate of Heaven
  • Hearts of Iron IV: Death or Dishonor
  • Europa Universalis IV
  • Europa Universalis 4: Emperor
  • Stellaris: Ancient Relics
  • Europa Universalis IV: Golden Century
  • Crusader Kings II: Holy Fury
  • Stellaris: Megacorp
  • Europa Universalis IV: Dharma
  • Europa Universalis IV: Rule Britannia
  • Stellaris: Apocalypse
  • Hearts of Iron IV: Expansion Pass
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Cradle of Civilization
  • Victoria 2
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • Europa Universalis IV: Mare Nostrum
  • Crusader Kings II: Jade Dragon
  • Europa Universalis IV: Third Rome
  • Crusader Kings II
  • Europa Universalis IV: Pre-order
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Art of War
  • 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: Charlemagne
One line summary of your issue
Temujin always becomes unlanded when I load a savegame.

Game Version
3.3.0 (YDSW)

What expansions do you have installed?
All of the above

Do you have mods enabled?
No

Please explain your issue is in as much detail as possible.
Temujin is invading Otuken. I have played until he has defeated them and taken all the titles in Uyghur. When I wanted to replay saves before he had finished conquering Otuken, the game keeps ending his war as he becomes "unlanded" for some reason. Thus, spoiling the save.

Steps to reproduce the issue.
I have no idea. It occurs over multiple saves where Temujin is in the middle of a war, before he has gained any conquests. Whenever I reload that save, his wars immediately end as he "becomes unlanded".

Upload Attachment
 

Attachments

  • 20200128040417_1.jpg
    20200128040417_1.jpg
    711,9 KB · Views: 10
Upvote 0
If not ironman, you can follow my fix below.

It's due to landless attribute of titles did not save into savegame correctly, which set in event 60500
Code:
# Mongol horde starts forming
narrative_event = {
   id = 60500
...
                       e_mongol_empire = {
                           set_title_landless = { title = THIS status = yes }
                           set_title_flag = temporary_landless_title
                           grant_title = PREV
                       }
You can have a quick fix, for example
Code:
# landless status maintenance fired from on_action
character_event = {
   id = 60503
   hide_window = yes
   is_triggered_only = yes
  
   trigger = {
       always = yes
   }
  
   immediate = {
       any_title = {
           limit = {
               has_title_flag = temporary_landless_title
           }
           set_title_landless = { title = THIS status = yes }
       }
   }
}
and put this event id in on_actions. This helping e_mongol_empire remains landless horde until they wins.

Edit: Having not noticed you're playing with HL DLC. The tips above is not for Horse Lord DLC game(but for tribal invasion varient). Sorry can not help you.
 
Last edited:
That might not be the right event or fix for Horse Lords, but I think that's the problem. If the Mongols have just arrived and haven't conquered anything on-map yet, then Temujin is still landless.

The fix would be to not quit the game until after he's won that war. Then he won't be landless anymore. OK, technically, that's a work-around, not a fix, but it should solve your problem.