The event in question can be found in rumours_events.txt, event id 69016, titled 'Suspect of Incest: Child notices you and sister alone in a tower'
The trigger for this event can never be fulfilled, this is due to the following piece of script:
ROOT, who is always male, must have a child whose father is not ROOT, which is clearly impossible. I personally suspect that any_child is intended to be any_courtier (and consequently random_courtier instead of random_child further on in the event).
The trigger for this event can never be fulfilled, this is due to the following piece of script:
Code:
any_child = {
NOT = {
father = {
character = ROOT
}
}
NOT = {
mother = {
sibling = ROOT
}
}
age = 6
NOT = {
age = 15
}
NOT = {
trait = maimed
}
}
ROOT, who is always male, must have a child whose father is not ROOT, which is clearly impossible. I personally suspect that any_child is intended to be any_courtier (and consequently random_courtier instead of random_child further on in the event).
Upvote
0