Could anybody take a quick look at these two codes and tell me what mistakes I made? I'm still rookie when it comes to modding CK2.
This is supposed to be a decision. It doesn't trigger the event.
In this event I don't know why but when firing the event via console (no other way since the decision doesn't work) it makes the options completely different from what I was trying to set. It shows options for sth like maybe a hunting event - 1 maimed option and 2 wounded. How to fix that?
Code:
artist_0 = {
potential = {
}
allow = {
scaled_wealth = 1.0
}
effect = {
character_event = { id = 85000 days = 2 }
}
ai_will_do = {
factor = 0
}
}
}
This is supposed to be a decision. It doesn't trigger the event.
Code:
letter_event = {
id = 85000
desc = "EVTDESC85000"
picture = GFX_evt_monk
is_triggered_only = yes
}
option = {
name = "EVTOPTA85000"
scaled_wealth = -0.4
prestige = 10
random = {
chance = 10
add_trait = proud }
}
option = {
name = "EVTOPTB85000"
scaled_wealth = -0.4
piety = 10
random = {
chance = 10
add_trait = proud }
}
option = {
name = "EVTOPTC85000"
scaled_wealth = -0.8
prestige = 25
random = {
chance = 30
add_trait = proud }
}
In this event I don't know why but when firing the event via console (no other way since the decision doesn't work) it makes the options completely different from what I was trying to set. It shows options for sth like maybe a hunting event - 1 maimed option and 2 wounded. How to fix that?