It gives me the option to and even lets me click the button when I meet the requirements but nothing happens when I do, why even give us the option if we cant do it, is it broken?
- 1
- 1
You clicked the decision to form a new empire? not a in game dejure one, when I click on the option it says I can do it but it says it will have no affects unlike when I'm feudal it list the kingdom's I have that will form my empire.I tried and I succeed, so did AI.
Okay, so for nomads, they specifically added triggers. And there's nothing in is_shown or is_valid that even hints that it should be disabled for nomads. However, in the effect line:Code:is_valid = { ... trigger_if = { limit = { government_has_flag = government_is_nomadic } OR = { has_realm_law = nomadic_authority_5 has_realm_law = nomadic_authority_4 } } ... }
It's actually coded to do literally nothing for nomads. Like, the decision is specifically coded to take your prestige/gold/piety and just do nothing, because it only works if your government is not nomadic.Code:effect = { if = { limit = { NOT = { government_has_flag = government_is_nomadic } } create_custom_empire_effect = yes gain_heroic_legend_seed_tooltip_effect = yes hidden_effect = { legend_seed_new_title_effect = yes } } ... }