Legitimate son Revelead as a Bastard! Broken effect.
Looking at event 1961 in "lordship_events.txt" found an error in the effects.
Note the two "action_a" effects. Using console to trigger, effects are not correct. I only get one option.
Changed second effect to "action_b" and I get all 3 options as intended.
~CaBhaal
Looking at event 1961 in "lordship_events.txt" found an error in the effects.
Code:
character_event = {
id = 1961
picture = "event_intrigue"
# Triggered by 1102
action_a = {
effect = { type = gold value = -200 }
effect = { type = prestige value = -50 }
effect = {
type = random
chance = 5
effect = {
type = add_trait
for = random_son value = bastard
}
}
}
action_a = {
effect = { type = piety value = 5 }
effect = {
type = random
chance = 50
effect = {
type = add_trait
for = random_son value = bastard
}
}
}
action_c = {
effect = { type = add_trait for = random_son value = bastard }
}
}
Note the two "action_a" effects. Using console to trigger, effects are not correct. I only get one option.
Changed second effect to "action_b" and I get all 3 options as intended.
~CaBhaal
Upvote
0