Hello, I have a little problem with a event I'm writing.
################################
# Gold falls from the sky.
################################
Character_event = {
id = 99999
picture = "event_crusades"
trigger = {
condition = {
type = is_independent
}
condition = {
type = is_vassal
}
mean_time_to_happen = {
months = 1
modifier = {
condition = {
type = not
value = {
type = Ai
}
}
action_a = {#Get the gold!
effect = { type = gold value = 10000 }
effect = { type = piety value = 10000 }
effect = { type = prestige value = 10000 }
}
}
}
action_b = {#No we don't need it!
}
}
I get a error message about the "mean time to happen" line, and it does not fire.
So how do I get it to fire for all human players at the start of the game?
################################
# Gold falls from the sky.
################################
Character_event = {
id = 99999
picture = "event_crusades"
trigger = {
condition = {
type = is_independent
}
condition = {
type = is_vassal
}
mean_time_to_happen = {
months = 1
modifier = {
condition = {
type = not
value = {
type = Ai
}
}
action_a = {#Get the gold!
effect = { type = gold value = 10000 }
effect = { type = piety value = 10000 }
effect = { type = prestige value = 10000 }
}
}
}
action_b = {#No we don't need it!
}
}
I get a error message about the "mean time to happen" line, and it does not fire.
So how do I get it to fire for all human players at the start of the game?