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

klopkr

Chief suggester at the suggestion factory
106 Badges
Aug 12, 2013
8.775
15.318
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: Call to arms event
  • Rome: Vae Victis
  • Warlock: Master of the Arcane
  • Crusader Kings II
  • Europa Universalis IV: Mare Nostrum
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Monks and Mystics
  • Hearts of Iron IV Sign-up
  • Stellaris Sign-up
  • Hearts of Iron IV: Cadet
  • Crusader Kings II: Reapers Due
  • Europa Universalis IV: Rights of Man
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Cities: Skylines - Natural Disasters
  • Hearts of Iron IV: Together for Victory
  • Humble Paradox Bundle
  • Europa Universalis IV: Dharma
  • Cities: Skylines - Mass Transit
  • Europa Universalis IV: Mandate of Heaven
  • Crusader Kings Complete
  • BATTLETECH
  • Surviving Mars
  • Hearts of Iron IV: Death or Dishonor
  • Crusader Kings II: Holy Fury
  • Cities: Skylines - Green Cities
  • Europa Universalis IV: Rule Britannia
  • Hearts of Iron IV: Expansion Pass
  • Europa Universalis III Complete
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron IV: Expansion Pass
  • Crusader Kings II: The Republic
  • Prison Architect
  • Imperator: Rome Deluxe Edition
  • Europa Universalis IV
  • Cities: Skylines - Parklife
  • Stellaris: Apocalypse
  • Europa Universalis III Complete
  • Stellaris: Distant Stars
  • Crusader Kings II: Conclave
  • Surviving Mars: First Colony Edition
  • The Showdown Effect
  • War of the Roses
  • Cities: Skylines
  • Europa Universalis IV: El Dorado
  • Magicka: Wizard Wars Founder Wizard
  • Mount & Blade: Warband
  • Crusader Kings II: Way of Life
  • Stellaris: Humanoids Species Pack
One line summary of your issue
Borjigns don't get the chinese throne from the mongol invasions in the mongol bookmark.

Game Version
1.8.X

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.
If you start as the mongol empire and let the mongol invasion of china event chain follow through, even if the mongols win it's never a character of your dynasty.

Steps to reproduce the issue.
Just start in the mongol start date as Genghis Khan and wait a few years.

Upload Attachment
 
Upvote 0

klopkr

Chief suggester at the suggestion factory
106 Badges
Aug 12, 2013
8.775
15.318
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: Call to arms event
  • Rome: Vae Victis
  • Warlock: Master of the Arcane
  • Crusader Kings II
  • Europa Universalis IV: Mare Nostrum
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Monks and Mystics
  • Hearts of Iron IV Sign-up
  • Stellaris Sign-up
  • Hearts of Iron IV: Cadet
  • Crusader Kings II: Reapers Due
  • Europa Universalis IV: Rights of Man
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Cities: Skylines - Natural Disasters
  • Hearts of Iron IV: Together for Victory
  • Humble Paradox Bundle
  • Europa Universalis IV: Dharma
  • Cities: Skylines - Mass Transit
  • Europa Universalis IV: Mandate of Heaven
  • Crusader Kings Complete
  • BATTLETECH
  • Surviving Mars
  • Hearts of Iron IV: Death or Dishonor
  • Crusader Kings II: Holy Fury
  • Cities: Skylines - Green Cities
  • Europa Universalis IV: Rule Britannia
  • Hearts of Iron IV: Expansion Pass
  • Europa Universalis III Complete
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron IV: Expansion Pass
  • Crusader Kings II: The Republic
  • Prison Architect
  • Imperator: Rome Deluxe Edition
  • Europa Universalis IV
  • Cities: Skylines - Parklife
  • Stellaris: Apocalypse
  • Europa Universalis III Complete
  • Stellaris: Distant Stars
  • Crusader Kings II: Conclave
  • Surviving Mars: First Colony Edition
  • The Showdown Effect
  • War of the Roses
  • Cities: Skylines
  • Europa Universalis IV: El Dorado
  • Magicka: Wizard Wars Founder Wizard
  • Mount & Blade: Warband
  • Crusader Kings II: Way of Life
  • Stellaris: Humanoids Species Pack
Code:
            100 = { # Mongols won!
                modifier = {
                    factor = 3
                    FROM = {
                        OR = {
                            prev_status = china_unrest
                            prev_status = china_famine
                            prev_status = china_plague
                        }
                    }
                }
                modifier = { # The Borjigins are more likely to win
                    factor = 5
                    NOT = {
                        has_global_flag = borjigin_china
                    }
                    any_independent_ruler = {
                        OR = {
                            dynasty = 11100
                            dynasty = 1051210
                        }
                        has_landed_title = e_mongol_empire
                        ai = yes
                    }
                }

Code:
                if = { # If the Borjigin's are around, it's guaranteed to be a Borjigin emperor
                    limit = {
                        NOT = {
                            has_global_flag = borjigin_china
                        }
                        any_independent_ruler = {
                            OR = {
                                dynasty = 11100
                                dynasty = 1051210
                            }
                            has_landed_title = e_mongol_empire
                            ai = yes
                        }
                    }
                    random_independent_ruler = {
                        limit = {
                            OR = {
                                dynasty = 11100
                                dynasty = 1051210
                            }
                            has_landed_title = e_mongol_empire
                            ai = yes
                        }
                        save_event_target_as = mongol_china_invader
                    }
                }

That ai=yes is the problem if you play as the Mongols

So apparently the reason it doens't work for players is because this AI=yes part of the event. Why is this here? Isn't this unfair to the player? Plus it kind of ruins the historical mongol start!