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

Bom-Bom

Recruit
Apr 21, 2021
3
0
Hello friends. the event of the tomb of Pharaoh Tutankhamun does not fall out. Egypt allowed excavations on March 11, 1854. It was already: An Egyptian tomb has been discovered! -February 18, 1855, Egyptian tomb discovered! -February 13, 1858. A mummy was found on August 6, 1858. The Egyptian tomb was discovered! - November 6, 1870. now 1903. Tutankhamun still hasn't excavated. what percentage of probability? can kesh clean more often? outplayed more than two hundred times. excavations of Pharaoh Tutankhamun fell in Italy, which is in eighth place -3 times and in Austria, which is in fifth place -1 times. will fall to me in Russia someday?
 

Bunnytob

Not promoted on merit
14 Badges
Sep 17, 2017
3.056
1.051
  • Crusader Kings II
  • Victoria 2
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • Hearts of Iron IV: Cadet
  • Hearts of Iron IV: Together for Victory
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Expansion Pass
  • For the Motherland
  • Hearts of Iron III
  • Hearts of Iron III: Their Finest Hour
  • Semper Fi
It only fires once and has a MTTH of 166 years. The chance of you getting it at all (without anyone else even trying to get it) is less than half on any given run.

Assuming you were doing the excavations yourself (and not just letting the AI do it) than you probably just got unlucky.

Code:
#Tutankhamun's Tomb
country_event = {
    id = 19046
    news = yes
    news_desc_long = "EVTDESC19046_NEWS_LONG"
    news_desc_medium = "EVTDESC19046_NEWS_MEDIUM"
    news_desc_short = "EVTDESC19046_NEWS_SHORT"
    title = "EVTNAME19046"
    desc = "EVTDESC19046"
    picture = "Egyptian"

    trigger = {
        has_country_modifier = egyptian_excavations
        NOT = {
            has_global_flag = tutankhamun_found
        }
    }

    major = yes

    mean_time_to_happen = {
        months = 2000
    }

    option = {
        name = "EVTOPTA19046"
        prestige = 30
        years_of_research = 1
        set_global_flag = tutankhamun_found
        any_country = {
            remove_country_modifier = egyptian_excavations
        }
        remove_country_modifier = egyptian_excavations
        clr_global_flag = egyptian_excavation_rights
    }
}