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

arnastia

Recruit
90 Badges
Mar 10, 2015
1
0
  • Hearts of Iron III
  • Hearts of Iron III: Their Finest Hour
  • Heir to the Throne
  • Knights of Pen and Paper +1 Edition
  • Magicka
  • Majesty 2 Collection
  • Europa Universalis IV: Res Publica
  • Victoria: Revolutions
  • Semper Fi
  • Warlock: Master of the Arcane
  • Sengoku
  • Teleglitch: Die More Edition
  • Victoria 2
  • Stellaris: Nemesis
  • Europa Universalis IV: Dharma
  • Stellaris: Galaxy Edition
  • Cities: Skylines
  • Hearts of Iron IV: Cadet
  • Europa Universalis IV: El Dorado
  • Mount & Blade: Warband
  • Mount & Blade: With Fire and Sword
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
  • Knights of Pen and Paper 2
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Conclave
  • Crusader Kings II: Reapers Due
  • Stellaris
  • Europa Universalis IV: Cradle of Civilization
  • Stellaris: Galaxy Edition
  • Europa Universalis IV: Rule Britannia
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Humanoids Species Pack
  • Hearts of Iron IV: Expansion Pass
  • Crusader Kings II: Jade Dragon
  • Cities: Skylines - Parklife
  • Age of Wonders III
  • Stellaris: Synthetic Dawn
  • Hearts of Iron IV: Death or Dishonor
  • Surviving Mars
  • Europa Universalis III Complete
  • Crusader Kings Complete
  • Europa Universalis IV: Mandate of Heaven
  • Stellaris - Path to Destruction bundle
  • Crusader Kings II: Monks and Mystics
  • Hearts of Iron IV: Together for Victory
  • Stellaris: Leviathans Story Pack
  • Europa Universalis IV: Rights of Man
  • Stellaris: Distant Stars
Not sure if this has been reported already since I can't seem to search this forum, but anyways:

The Zorastrian/Khurmazta specific decision to celebrate Jashn-e Sadah is only available once per character, despite probably being supposed to be on a 5 year cooldown.

The 'decisions/religious_decisions.txt' script for the decision checks for the character flag 'planning_sadah_feast', and then sets it if the decision is taken.

However, the resulting event chain instead clears another character flag, 'holding_sadah', that is neither ever set nor does the decision check for. Incidently, the decision checks for a 'holding_sadah_feast' character flag that is never referenced anywhere else.

Additionaly, while the decision checks for the 'held_sadah_feast_timer', the event chain actually sets 'jd_held_sadah_timer' instead.

DLC: I am using every major DLC, and every minor one minus a couple of music packs.
Mods: No mods, for what it's worth.

Reproduction steps:
1. Start the game as a Zoroastrian.
2. Use the 'Celebrate Jashn-e Sadah' decision.
3. Complete the event chain, timed character modifier giving a +5 vassal opinion bonus gets set.
4. Five years later modifier is removed but decision does not become available again.

For reference:

Code:
        celebrate_jashan_e_sadah = {
                only_playable = yes
                ai_check_interval = 2
                potential = {
                        OR = {
                                religion = zoroastrian
                                religion = khurmazta
                        }
                        NOR = {
                                has_character_modifier = held_sadah_feast_timer
                                liege = { has_character_flag = holding_sadah_feast }
                                has_character_flag = holding_sadah_feast
                                has_character_flag = planning_sadah_feast
                        }
                }
                allow = {
                        war = no
                        custom_tooltip = {
                                text = UNOCCUPIED_DEMESNE_TITLE
                                hidden_tooltip = {
                                        any_demesne_title = {
                                                NOT = { higher_tier_than = count }
                                                is_occupied = no
                                        }
                                }
                        }
                        prisoner = no
                        NOT = { is_inaccessible_trigger = yes }
                        wealth = 50
                        prestige = 100
                        has_regent = no
                        month = 8
                        not = { month = 10 }
                }
                effect = {
                        wealth = -50
                        set_character_flag = planning_sadah_feast
                        custom_tooltip = {
                                text = prepare_sadah_feast
                                hidden_tooltip = {
                                        character_event = { id = 39820 }
                                }
                        }
                }
                ai_will_do = {
                        factor = 1
                        modifier = {
                                factor = 0
                                NOT = {
                                        wealth = 300
                                }
                        }
                        modifier = {
                                factor = 0
                                trait = shy
                        }
                        modifier = {
                                factor = 0
                                NOT = { diplomacy = 10 }
                        }
                }
        }

Code:
# Feast Ends (Liege)
character_event = {
        id = 39827
        desc = EVTDESC39827
        picture = GFX_evt_powerful_ruler
        border = GFX_event_normal_frame_religion

        is_triggered_only = yes

        hide_from = yes

        option = {
                name = EVTOPTA39827
                any_vassal = {
                        limit = { has_character_flag = attending_sadah }
                        opinion = {
                                modifier = opinion_held_sadah
                                who = ROOT
                        }
                }
                hidden_tooltip = {
                        any_vassal = {
                                limit = { has_character_flag = attending_sadah }
                                character_event = { id = 39828 }
                        }
                }
                add_character_modifier = {
                        name = jd_held_sadah_timer
                        duration = 1825
                }
                prestige = 200
                piety = 100
                clr_character_flag = holding_sadah
                clr_character_flag = feast_drunkard
                clr_character_flag = feast_gluttonous
                clr_character_flag = feast_lunatic
                clr_character_flag = feast_lustful
                clr_character_flag = feast_homosexual
                clr_character_flag = do_not_disturb
        }
}
 
Last edited:
Upvote 0

C-5

Private
70 Badges
Aug 9, 2015
11
0
  • Crusader Kings II: Reapers Due
  • Stellaris: Synthetic Dawn
  • Imperator: Rome
  • Cities: Skylines - Mass Transit
  • Stellaris: Megacorp
  • Stellaris: Galaxy Edition
  • Crusader Kings II: Holy Fury
  • Stellaris Sign-up
  • Hearts of Iron IV: Cadet
  • Europa Universalis IV: Rights of Man
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Cities: Skylines - Natural Disasters
  • Crusader Kings II: Monks and Mystics
  • Imperator: Rome Deluxe Edition
  • Surviving Mars: First Colony Edition
  • Europa Universalis IV: Mandate of Heaven
  • Surviving Mars: First Colony Edition
  • Surviving Mars
  • Cities: Skylines - Green Cities
  • Stellaris: Ancient Relics
  • Cities: Skylines - Campus
  • Stellaris: Humanoids Species Pack
  • Europa Universalis IV: Rule Britannia
  • Surviving Mars: Digital Deluxe Edition
  • Cities: Skylines - Parklife
  • Europa Universalis IV: Dharma
  • Stellaris: Lithoids
  • Stellaris: Nemesis
  • Stellaris: Necroids
  • Europa Universalis 4: Emperor
  • Europa Universalis IV
  • Crusader Kings III
  • Stellaris: Federations
  • Europa Universalis IV: Golden Century
  • Cities: Skylines
  • Europa Universalis IV: El Dorado
  • Mount & Blade: Warband
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
  • Stellaris: Distant Stars
  • Crusader Kings II: Conclave
  • Cities: Skylines - After Dark
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: Wealth of Nations
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Charlemagne
  • Crusader Kings II
  • Crusader Kings II: Rajas of India
Sorry for digging up an old post, but I searched the forum and only found this post related.

[2.8.1.1] Launcher[ISRM] Ingame[JSRM]

I started an ironman game as Sheikh Shervin of Daylam on 769A.D. trying to rebuild the Persian Empire. I held the "Jashn-e Sadeh" Festival once after i had some extra money to spend and looked forward to hold again after 5 years but I waited for some decades (Shervin became an immortal) still can't hold the festival again. I checked the wiki and it mentioned the festival can be held every five years, so i searched the forum and found arnastia's post.

I owned all dlcs except the russian portraits and I didn't use any mods except one that change the duke ring to the old blue ring.

I attached my save in case you need to look at it.

Thank you.
 

Attachments

  • Ironman_Daylam.ck2
    10,7 MB · Views: 0
Last edited:

[Arthur-PDX]

Hobo from outer space
Sep 13, 2016
682
28
Hey,

Thanks for the report. I've double checked and could still repro in our internal version, so I made a ticket and we'll get it fixed whenever we have time for it.

Cheers


Arthur