• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.
I stumbled upon this in the focus file, for rulership AI pick chance:

Code:
    chance = {
        factor = 100
        modifier = {
            factor = 0
            trait = stressed
        }

Do I get it right that the AI will always drop rulership focus when it gets stressed? That would mean the AI will basicly never keep it...

This is in the comments of the file:
Code:
# Note: if 'chance' evaluates to 0, an AI character will also abandon the focus
 
This is the original event, minus a check preventing it to fire for AI characters and slightly more lax requirements to fire.

Code:
# Landless claimants can ask the Dynasty head to fight a war for your claim.
# Fired from 'on_yearly_pulse'
character_event = {
    id = 66099
    hide_window = yes
   
    is_triggered_only = yes
   
    capable_only = yes
    prisoner = no
    min_age = 16
   
    trigger = {
        has_regent = no
        war = no
        is_tributary = no
        is_nomadic = no
        top_liege = {
            OR = {
                AND = {
                    has_dlc = "Conclave"
                    NOT = { has_law = vassal_wars_law_2 }
                }
                AND = {
                    NOT = { has_dlc = "Conclave"}
                    NOR = {
                        has_law = crown_authority_2
                        has_law = crown_authority_3
                        has_law = crown_authority_4
                    }
                }
            }
        }
        any_dynasty_member = {
            is_offmap_ruler = no
            is_landed = no
            is_incapable = no
            is_adult = yes
            is_liege_or_above = ROOT
            any_claim = {
                has_holder = yes
                NOR = {
                    holder_scope = { # Not against nomads
                        is_nomadic = yes
                    }
                    holder_scope = { # Top liege not nomad
                        top_liege = {
                            is_nomadic = yes
                        }
                    }
                    holder_scope = { # Not in revolt
                        in_revolt = yes
                    }
                    holder_scope = { # Top liege not in revolt
                        top_liege = {
                            in_revolt = yes
                        }
                    }
                    holder_scope = { # Not the same realm
                        same_realm = ROOT
                    }
                    holder_scope = { # Not someone ROOT has a NAP with
                        has_non_aggression_pact_with = ROOT
                    }
                    holder_scope = { # ROOT can not have a NAP with the top liege either
                        top_liege = {
                            has_non_aggression_pact_with = ROOT
                        }
                    }
                    holder_scope = { # Not an ally of ROOT
                        is_allied_with = ROOT
                    }
                    holder_scope = { # ROOT is not allied with the top liege
                        top_liege = {
                            is_allied_with = ROOT
                        }
                    }
                    holder_scope = { # The target is not a tributary of ROOT
                        is_tributary = yes
                        suzerain = {
                            OR = {
                                character = ROOT
                                any_liege = {
                                    character = ROOT
                                }
                            }
                        }
                    }
                    holder_scope = { # The targets top liege is not a tributary of ROOT
                        top_liege = {
                            is_tributary = yes
                            suzerain = {
                                OR = {
                                    character = ROOT
                                    any_liege = {
                                        character = ROOT
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
   
    weight_multiplier = {
        factor = 2
    }
   
    immediate = {
        random_dynasty_member = {
            limit = {
                is_offmap_ruler = no
                is_landed = no
                is_liege_or_above = ROOT
                is_incapable = no
                is_adult = yes
                any_claim = {
                    has_holder = yes
                    NOR = {
                        holder_scope = { # Not against nomads
                            is_nomadic = yes
                        }
                        holder_scope = { # Top liege not nomad
                            top_liege = {
                                is_nomadic = yes
                            }
                        }
                        holder_scope = { # Not in revolt
                            in_revolt = yes
                        }
                        holder_scope = { # Top liege not in revolt
                            top_liege = {
                                in_revolt = yes
                            }
                        }
                        holder_scope = { # Not the same realm
                            same_realm = ROOT
                        }
                        holder_scope = { # Not someone ROOT has a NAP with
                            has_non_aggression_pact_with = ROOT
                        }
                        holder_scope = { # ROOT can not have a NAP with the top liege either
                            top_liege = {
                                has_non_aggression_pact_with = ROOT
                            }
                        }
                        holder_scope = { # Not an ally of ROOT
                            is_allied_with = ROOT
                        }
                        holder_scope = { # ROOT is not allied with the top liege
                            top_liege = {
                                is_allied_with = ROOT
                            }
                        }
                        holder_scope = { # The target is not a tributary of ROOT
                            is_tributary = yes
                            suzerain = {
                                OR = {
                                    character = ROOT
                                    any_liege = {
                                        character = ROOT
                                    }
                                }
                            }
                        }
                        holder_scope = { # The targets top liege is not a tributary of ROOT
                            top_liege = {
                                is_tributary = yes
                                suzerain = {
                                    OR = {
                                        character = ROOT
                                        any_liege = {
                                            character = ROOT
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            character_event = { id = 66100 }
        }
    }
}

This is the spouse version of the event I made.

Code:
# Copy of event 66099 adapted to fire for spouses
# Landless spouse can ask the Dynasty head to fight a war for your claim.
# Fired from 'on_yearly_pulse'
character_event = {
    id = incitatus.0001
    hide_window = yes
   
    is_triggered_only = yes
   
    capable_only = yes
    prisoner = no
    min_age = 16
   
    trigger = {
        has_regent = no
        war = no
        is_tributary = no
        is_nomadic = no
        top_liege = {
            OR = {
                AND = {
                    has_dlc = "Conclave"
                    NOT = { has_law = vassal_wars_law_2 }
                }
                AND = {
                    NOT = { has_dlc = "Conclave"}
                    NOR = {
                        has_law = crown_authority_2
                        has_law = crown_authority_3
                        has_law = crown_authority_4
                    }
                }
            }
        }
        any_spouse = {
            is_offmap_ruler = no
            is_landed = no
            is_incapable = no
            is_adult = yes
            is_liege_or_above = ROOT
            any_claim = {
                has_holder = yes
                NOR = {
                    holder_scope = { # Not against nomads
                        is_nomadic = yes
                    }
                    holder_scope = { # Top liege not nomad
                        top_liege = {
                            is_nomadic = yes
                        }
                    }
                    holder_scope = { # Not in revolt
                        in_revolt = yes
                    }
                    holder_scope = { # Top liege not in revolt
                        top_liege = {
                            in_revolt = yes
                        }
                    }
                    holder_scope = { # Not the same realm
                        same_realm = ROOT
                    }
                    holder_scope = { # Not someone ROOT has a NAP with
                        has_non_aggression_pact_with = ROOT
                    }
                    holder_scope = { # ROOT can not have a NAP with the top liege either
                        top_liege = {
                            has_non_aggression_pact_with = ROOT
                        }
                    }
                    holder_scope = { # Not an ally of ROOT
                        is_allied_with = ROOT
                    }
                    holder_scope = { # ROOT is not allied with the top liege
                        top_liege = {
                            is_allied_with = ROOT
                        }
                    }
                    holder_scope = { # The target is not a tributary of ROOT
                        is_tributary = yes
                        suzerain = {
                            OR = {
                                character = ROOT
                                any_liege = {
                                    character = ROOT
                                }
                            }
                        }
                    }
                    holder_scope = { # The targets top liege is not a tributary of ROOT
                        top_liege = {
                            is_tributary = yes
                            suzerain = {
                                OR = {
                                    character = ROOT
                                    any_liege = {
                                        character = ROOT
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
   
    weight_multiplier = {
        factor = 10
    }
   
    immediate = {
        random_spouse = {
            limit = {
                is_offmap_ruler = no
                is_landed = no
                is_liege_or_above = ROOT
                is_incapable = no
                is_adult = yes
                any_claim = {
                    has_holder = yes
                    NOR = {
                        holder_scope = { # Not against nomads
                            is_nomadic = yes
                        }
                        holder_scope = { # Top liege not nomad
                            top_liege = {
                                is_nomadic = yes
                            }
                        }
                        holder_scope = { # Not in revolt
                            in_revolt = yes
                        }
                        holder_scope = { # Top liege not in revolt
                            top_liege = {
                                in_revolt = yes
                            }
                        }
                        holder_scope = { # Not the same realm
                            same_realm = ROOT
                        }
                        holder_scope = { # Not someone ROOT has a NAP with
                            has_non_aggression_pact_with = ROOT
                        }
                        holder_scope = { # ROOT can not have a NAP with the top liege either
                            top_liege = {
                                has_non_aggression_pact_with = ROOT
                            }
                        }
                        holder_scope = { # Not an ally of ROOT
                            is_allied_with = ROOT
                        }
                        holder_scope = { # ROOT is not allied with the top liege
                            top_liege = {
                                is_allied_with = ROOT
                            }
                        }
                        holder_scope = { # The target is not a tributary of ROOT
                            is_tributary = yes
                            suzerain = {
                                OR = {
                                    character = ROOT
                                    any_liege = {
                                        character = ROOT
                                    }
                                }
                            }
                        }
                        holder_scope = { # The targets top liege is not a tributary of ROOT
                            top_liege = {
                                is_tributary = yes
                                suzerain = {
                                    OR = {
                                        character = ROOT
                                        any_liege = {
                                            character = ROOT
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            character_event = { id = 66100 }
        }
    }
}

This is the events that rulers receive:
Code:
character_event = {
    id = 66100
    desc = EVTDESC66100
    picture = GFX_evt_emissary
   
    is_triggered_only = yes
   
    option = {
        name = EVTOPTA66100 #ask for the war!
       
        FROM = {
            character_event = {    id = 66110     days = 9 tooltip = EVTTOOLTIP66110 }
        }       
    }
}

Code:
character_event = {
    id = 66110
    desc = EVTDESC66110
    picture = GFX_evt_emissary
   
    is_triggered_only = yes
   
    immediate = {
        FROM = {
            save_event_target_as = claimant
            random_claim = {
                limit = {
                    has_holder = yes
                    NOR = {
                        holder_scope = { # Not against nomads
                            is_nomadic = yes
                        }
                        holder_scope = { # Top liege not nomad
                            top_liege = {
                                is_nomadic = yes
                            }
                        }
                        holder_scope = { # Not in revolt
                            in_revolt = yes
                        }
                        holder_scope = { # Top liege not in revolt
                            top_liege = {
                                in_revolt = yes
                            }
                        }
                        holder_scope = { # Not the same realm
                            same_realm = ROOT
                        }
                        holder_scope = { # Not someone ROOT has a NAP with
                            has_non_aggression_pact_with = ROOT
                        }
                        holder_scope = { # ROOT can not have a NAP with the top liege either
                            top_liege = {
                                has_non_aggression_pact_with = ROOT
                            }
                        }
                        holder_scope = { # Not an ally of ROOT
                            is_allied_with = ROOT
                        }
                        holder_scope = { # ROOT is not allied with the top liege
                            top_liege = {
                                is_allied_with = ROOT
                            }
                        }
                        holder_scope = { # The target is not a tributary of ROOT
                            is_tributary = yes
                            suzerain = {
                                OR = {
                                    character = ROOT
                                    any_liege = {
                                        character = ROOT
                                    }
                                }
                            }
                        }
                        holder_scope = { # The targets top liege is not a tributary of ROOT
                            top_liege = {
                                is_tributary = yes
                                suzerain = {
                                    OR = {
                                        character = ROOT
                                        any_liege = {
                                            character = ROOT
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                save_event_target_as = claimant_claim
            }
        }
    }
   
    option = {
        name = EVTOPTA66110 #go to war!
        ai_chance = {
            factor = 2
            modifier = {
                factor = 3
                FROM = { diplomacy = 12 }
            }
            modifier = {
                factor = 2
                FROM = { martial = 10 }
            }
            modifier = {
                factor = 5
                FROM = { intrigue = 14 }
            }
            modifier = {
                factor = 1.5
                opinion = { who = FROM value =  25 }
            }
            modifier = {
                factor = 2
                opinion = { who = FROM value =  50 }
            }
            modifier = {
                factor = 3
                opinion = { who = FROM value =  75 }
            }
        }
        event_target:claimant_claim = {
            reverse_unsafe_war = {
                target = event_target:claimant
                casus_belli = other_claim
                thirdparty = ROOT
            }
            log = "66110: [Root.GetBestName] starts war for [From.GetBestName]'s claim on [This.GetName]"
        }
    }   
   
    option = {
        name = EVTOPTB66110 #refuse outrageous demands.
        ai_chance = {
            factor = 1
            modifier = {
                factor = 0
                opinion = { who = FROM value = 80 }
            }
            modifier = {
                factor = 4
                opinion = { who = FROM value <= -20 }
            }
        }
       
        FROM = {
            opinion = {
                modifier = dynastic_refused_war
                who = ROOT
                years = 5
            }
        }
        prestige = -10
    }   
}

Practically speaking it needs some more work to make sure the AI doesn't declare suicidal wars, or have a different penalty for spouse refusal.
Looks fine to me. I assume you declared your namespace as appropriate in your event file. Also, if you did want a check for it to not happen to AI characters, you'd need to add ai = no.

For the focus thing, I don't know, but it certainly sounds that way.
 
  • 1
Reactions:
I stumbled upon this in the focus file, for rulership AI pick chance:

Code:
    chance = {
        factor = 100
        modifier = {
            factor = 0
            trait = stressed
        }

Do I get it right that the AI will always drop rulership focus when it gets stressed? That would mean the AI will basicly never keep it...

This is in the comments of the file:
Code:
# Note: if 'chance' evaluates to 0, an AI character will also abandon the focus

Based on a very quick test, the AI seems to keep an active focus it fails the "chance" for if the focus cooldown is active; I suspect it will switch ASAP if it is eligible for any of the other focuses once it can.
 
  • 1
Reactions:
A somewhat odd question: How do you calculate when a given character will give birth? It does not appear to be a specific number of days after impregnation; a console test for one character (player ruler) had them give birth on the 1st "nine months later", while on another (player courtier) it was an inconsistent number (e.g. impregnation on the 4th -> birth on the 7th, impregnation on the 9th -> birth on the 14th). Meanwhile, the "I'm pregnant!" event fired 60 days after pregnancy for my ruler, and the "Final months" started on the 230th day (with the regent sending the "I'm now your regent!" message the next day), regardless of the length of the months.

Also, does anyone know the likelihood of twins in the game? Neither the wiki nor the defines have any information about it as far as I can tell.
 
A somewhat odd question: How do you calculate when a given character will give birth? It does not appear to be a specific number of days after impregnation; a console test for one character (player ruler) had them give birth on the 1st "nine months later", while on another (player courtier) it was an inconsistent number (e.g. impregnation on the 4th -> birth on the 7th, impregnation on the 9th -> birth on the 14th). Meanwhile, the "I'm pregnant!" event fired 60 days after pregnancy for my ruler, and the "Final months" started on the 230th day (with the regent sending the "I'm now your regent!" message the next day), regardless of the length of the months.

I suspect there's some hardcoded calculation which specifies exactly when a character will give birth, along the lines of the calculation of the exact date of on_yearly_pulse etc. Unfortunately, the original calculations didn't look at birth date, but it might be possible to use a similar approach.

Also, does anyone know the likelihood of twins in the game? Neither the wiki nor the defines have any information about it as far as I can tell.

No idea, as far as I can tell there's nothing in scripts, ie. it's probably hardcoded.

If you're collecting stats on birth date (see above), it wouldn't be much extra work to collect stats on twins at the same time.
 
Trying to create an offer event where a brother offers a bride to another sibling, and in exchange the sibling becomes a vassal, establishing a duchy title. The title I created is d_napoli-malta. Here's what I got so far. Any advice?

Code:
narrative_event = {
    id = greco-norman_events.2
    desc = "EVTDESCgreco-norman_events.2"
    title = "EVTTITLEgreco-norman_events.2"
    picture = "GFX_event_beach_landing"
   
    only_independent = yes
    only_capable = yes
    prisoner = no
    has_character_flag = is_hector
   
    trigger = {
        NOT = { year = 1067 }
        NOT = { has_character_flag = estranged_brothers }
    }
   
    mean_time_to_happen = {
        days = 1
    }
   
    immediate = {
        set_character_flag = estranged_brothers
    }
   
    option = {
        name = EVTOPTAgreco-norman_events.2 #Makes offer to Roland
        ai_chance = { factor = 90 }
        c_malta = {
            holder_scope = {
                character_event = { id = greco-norman_events.3 }
            }
        }
    }
   
    option = {
        name = EVTOPTBgreco-norman_events.2 #No
        ai_chance = { factor = 10 }
    }
}

#Roland responds to offer
character_event = {
    id = greco-norman_events.3
    desc = "EVTDESCgreco-norman_events.3"
    picture = "GFX_event_beach_landing"
   
    is_triggered_only = yes
   
    trigger = {
        NOT = { year = 1067 }
        NOT = { has_character_flag = estranged_brothers }
    }
   
    immediate = {
        set_character_flag = estranged_brothers
    }
   
    option = {
        name = EVTOPTAgreco-norman_events.3 #No
        ai_chance = { factor = 10 }
        any_sibling = {
            limit = {
                has_character_flag = is_hector
            }
            show_scope_change = no
            add_rival = ROOT
        }
    }
    option = {
        name = EVTOPTBgreco-norman_events.3 #Yes
        ai_chance = { factor = 90 }
        c_napoli = {
            holder_scope = {
                any_courtier = {
                    limit = {
                        is_female = yes
                        is_married = no
                    }
                    add_spouse = ROOT
                }
            }
        }
    }
}
[\code]
 
Last edited:
Trying to create an offer event where a brother offers a bride to another sibling, and in exchange the sibling becomes a vassal, establishing a duchy title. The title I created is d_napoli-malta. Here's what I got so far. Any advice?

Code:
narrative_event = {
    id = greco-norman_events.2
    desc = "EVTDESCgreco-norman_events.2"
    title = "EVTTITLEgreco-norman_events.2"
    picture = "GFX_event_beach_landing"
 
    only_independent = yes
    only_capable = yes
    prisoner = no
    has_character_flag = is_hector
 
    trigger = {
        NOT = { year = 1067 }
        NOT = { has_character_flag = estranged_brothers }
    }
 
    mean_time_to_happen = {
        days = 1
    }
 
    immediate = {
        set_character_flag = estranged_brothers
    }
 
    option = {
        name = EVTOPTAgreco-norman_events.2 #Makes offer to Roland
        ai_chance = { factor = 90 }
        c_malta = {
            holder_scope = {
                character_event = { id = greco-norman_events.3 }
            }
        }
    }
 
    option = {
        name = EVTOPTBgreco-norman_events.2 #No
        ai_chance = { factor = 10 }
    }
}

#Roland responds to offer
character_event = {
    id = greco-norman_events.3
    desc = "EVTDESCgreco-norman_events.3"
    picture = "GFX_event_beach_landing"
 
    is_triggered_only = yes
 
    trigger = {
        NOT = { year = 1067 }
        NOT = { has_character_flag = estranged_brothers }
    }
 
    immediate = {
        set_character_flag = estranged_brothers
    }
 
    option = {
        name = EVTOPTAgreco-norman_events.3 #No
        ai_chance = { factor = 10 }
        any_sibling = {
            limit = {
                has_character_flag = is_hector
            }
            show_scope_change = no
            add_rival = ROOT
        }
    }
    option = {
        name = EVTOPTBgreco-norman_events.3 #Yes
        ai_chance = { factor = 90 }
        c_napoli = {
            holder_scope = {
                any_courtier = {
                    limit = {
                        is_female = yes
                        is_married = no
                    }
                    add_spouse = ROOT
                }
            }
        }
    }
}
[\code]
In .2, you should put a check in the trigger for Malta's holder to be Roland, and for him to be both unmarried and adult.

NOT = { year = 1067 } means, I'm pretty sure, that this event will only fire if it's before that year. Not during, and not afterwards. Just checking, in case you wanted it to be possible after that year too.

You might want to introduce war_with as a sanity check in the trigger, so that this event doesn't fire if Hector and Roland are at war with each other. Alternatively, you could allow it, but add in a command to end the war with a white peace if the bride is accepted.

For .3, you don't need a trigger block, assuming it's only ever called from .2.

Change any_courtier to random_courtier, otherwise, all eligible females will be married to him. (The documentation indicates that add_spouse ignores the spouse limit, and thus can make someone a polygamist even if their religion wouldn't allow it.)

You should also add the limit is_adult = yes into your limit block for the bride.

You might also want to add a check to ensure that there is an eligible adult female, and if not, use the command create_character to rectify that.
 
  • 1Like
Reactions:
In .2, you should put a check in the trigger for Malta's holder to be Roland, and for him to be both unmarried and adult.

NOT = { year = 1067 } means, I'm pretty sure, that this event will only fire if it's before that year. Not during, and not afterwards. Just checking, in case you wanted it to be possible after that year too.

You might want to introduce war_with as a sanity check in the trigger, so that this event doesn't fire if Hector and Roland are at war with each other. Alternatively, you could allow it, but add in a command to end the war with a white peace if the bride is accepted.

For .3, you don't need a trigger block, assuming it's only ever called from .2.

Change any_courtier to random_courtier, otherwise, all eligible females will be married to him. (The documentation indicates that add_spouse ignores the spouse limit, and thus can make someone a polygamist even if their religion wouldn't allow it.)

You should also add the limit is_adult = yes into your limit block for the bride.

You might also want to add a check to ensure that there is an eligible adult female, and if not, use the command create_character to rectify that.
I followed your advice and added to the event chain, but it seems to stop working after event 3
 

Attachments

  • code.txt
    3,2 KB · Views: 0
I followed your advice and added to the event chain, but it seems to stop working after event 3
You're still missing the is_adult = yes check for brides.

In .4, the option, there's an extraneous { bracket right beneath the name line. You should always run things through Validator, it's quite good at catching errors like that.

In addition, in .3, there are some non-standard characters in your bloodline flag, and I don't know if CK2's code can read that or not. If it can't, that might also be grinding things to a halt.

That's what leaps out at me.
 
  • 1Like
Reactions:
You're still missing the is_adult = yes check for brides.

In .4, the option, there's an extraneous { bracket right beneath the name line. You should always run things through Validator, it's quite good at catching errors like that.

In addition, in .3, there are some non-standard characters in your bloodline flag, and I don't know if CK2's code can read that or not. If it can't, that might also be grinding things to a halt.

That's what leaps out at me.
I eventually managed to make the marriage work, but I realized it was too complicated for what I wanted the event to achieve. I arranged it so that the offer to the brother would legitimize them in exchange for them becoming his vassal and, in the process, creating a new duchy.
 

Attachments

  • code2.txt
    1,9 KB · Views: 0
Are there ways to encourage the AI to max out its demesne size outside of plots?
 
Are there ways to encourage the AI to max out its demesne size outside of plots?
Not an easy way, as far as I know. However, AI will usually keep demesne holdings so long as they're not above their max, so you might be able to write an event that fires for rulers and checks if they're below their max demesne size and does something to grab more holdings (revoke baronies, etc). Just mind that it might be a tad expensive on processing power, firing for every (Count and above) ruler, depending on how often you fire it.
 
  • 1
Reactions:
I decided I would restrict some AI optimization features depending on ruler rank to be less limited by processing power. Is there a good way to measure game slowdown from modding?
 
I decided I would restrict some AI optimization features depending on ruler rank to be less limited by processing power. Is there a good way to measure game slowdown from modding?

Mainly observer games (time how long X years takes, or check how far the game progresses in Y time), and with those you need to consider that things might have gone in a fashion very detrimental to/beneficial for what you've been trying to test (e.g. a performance drain caused by each Catholic duke+ ruler spamming the Pope with requests will be a lot less noticeable if there are fewer Catholic duke+ rulers around, so if Catholic Europe collapses in one observer game and blobs out of control in another...).
 
  • 1
Reactions:
I tried searching for "tiered_prestige" in the wiki and I'm not finding any match (outside of an event called tiered prestige that somehow doesn't use the following quoted code). However a number of events use:
Code:
tiered_prestige_negative_effect = yes

tiered_prestige_reward_effect

Is the wiki missing some code options in its lists?
 
I tried searching for "tiered_prestige" in the wiki and I'm not finding any match (outside of an event called tiered prestige that somehow doesn't use the following quoted code). However a number of events use:
Code:
tiered_prestige_negative_effect = yes

tiered_prestige_reward_effect

Is the wiki missing some code options in its lists?

No, these are simply scripted effects, defined in common\scripted_effects.
 
  • 1
Reactions:
How does the game knows that events are part of the same chain wrt usage of event targets?
 
How does the game knows that events are part of the same chain wrt usage of event targets?

The game (and save) tracks the scopes separately for each instance of each ongoing event chain.
 
  • 1
Reactions:
I need the version for dummies. I read some on the wiki but it's a lot to swallow and event chains in particular I have not found the explanation. Is an event chain constituted by any event that is triggered by another event? The difference between event targets and persistent event targets is that persistent ones are available in events that are not part of the chain?