So, whenever I create an event or a decision that would send an event from my character to my character, it doesn't fire.
I'm trying to use this basic format to create a decision that will send my character an event:
This doesn't fire the event for my character, and I can't figure out why! Is there something I should be using instead of character_event?
I'm trying to use this basic format to create a decision that will send my character an event:
Code:
decisions = {
sample_decision = {
potential = {
sample_conditions
}
allow = {
sample_conditions
}
effect = {
character_event = {id = sampleevent.0001}
}
}
}
This doesn't fire the event for my character, and I can't figure out why! Is there something I should be using instead of character_event?