I just find an oddity and was wondering is someone could provide an explanation for it.
Let's say you create a new character in an event, and in the very same event's (new_character clause) you abdicate to that new character and call a new event for him (that is:
The event won't take effect. however if you write
it will work as intended. And no, there is no scope change between new_character and character_event in the first code.
Let's say you create a new character in an event, and in the very same event's (new_character clause) you abdicate to that new character and call a new event for him (that is:
Code:
...
new_character {
...
character_event = { id = yourevent.1 }
}
Code:
new_character {
...
THIS = {
character_event = { id = yourevent.1 }
}
}
it will work as intended. And no, there is no scope change between new_character and character_event in the first code.