• 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 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?

Yes, but an event chain can be started outside the first event, in a decision, for example. Persistent event targets have nothing to do with events. They're simply links to scopes saved on other scopes, like variables and flags. Event target is one of the most poorly named things in all of CK2 script. Think of them as saved scopes. Global saved scopes are that, global, across the entire gamestate, persistent saved scopes are like flags and variables, tied to whatever scoped they're saved on, and others are saved on an event chain, effectively, lasting until that event chain ends.
 
Last edited:
  • 1
Reactions:
Could somebody help me understand a vanilla event? It is event ZE.6021 in ze_ambition_events. I mostly understand everything, it's one of the events used to perform councillor swap.

What I do not understand is the purpose of the character modifier
Code:
councillors_changed_jobs
. It only appears in 2 other files. One is 00_event_modifiers, with the following code:
Code:
councillors_changed_jobs = {
    icon = 1
}

As well as v2_50b which looks like a localisation file.

In the event, it appears only twice, here:

Code:
 immediate = { #first, we set a char modifier and check what job the councillor has now
        
        set_character_flag = swapping_councillors
        
        add_character_modifier = {
            name = councillors_changed_jobs
            duration = 365
            hidden = yes
        }

As well as here, which I think is the option to cancel the job swapping.

Code:
    option = {
        name = EVTOPTF_ZE_6021
        event_target:moving_councillor = {
            clr_character_flag = is_chancellor
            clr_character_flag = is_marshal
            clr_character_flag = is_treasurer
            clr_character_flag = is_spymaster
            clr_character_flag = is_spiritual
            clr_character_flag = is_councilmember_king
            clr_character_flag = is_councilmember_emperor
        }
        clr_character_flag = option_1_displayed
        clr_character_flag = option_2_displayed
        clr_character_flag = option_3_displayed
        clr_character_flag = option_4_displayed
        clr_character_flag = option_5_displayed
        clr_character_flag = option_6_displayed
        clr_character_flag = option_6_king
        clr_character_flag = option_6_emperor
        remove_character_modifier = councillors_changed_jobs
    }
 
Could somebody help me understand a vanilla event? It is event ZE.6021 in ze_ambition_events. I mostly understand everything, it's one of the events used to perform councillor swap
What I do not understand is the purpose of the character modifier [snip]

Preventing the same councillor from being swapped around multiple times; it'd allow you to reassign them on the map before the cooldown is up, and would possibly have other issues.
 
  • 1
Reactions:
Thanks, but what makes you determine that it is what it does?
 
Thanks, but what makes you determine that it is what it does?

I believe it also shows up when you select councillors to swap, though I could be misremembering (or it could only be there in CleanSlate and vanilla-vanilla doesn't have it...).
 
  • 1
Reactions:
By itself, the modifier does nothing. It only exists so that the event can assign it to a councilor who swapped jobs and then so the event can check to make sure that a councilor doesn't have it when checking if a councilor can swap again.

Same idea as the use of flags, except it can have a set duration instead of being indefinite until removed.
 
  • 1
Reactions:
Well, that's the only matches I found by doing a search in the entire CK2 folder.

What would prevent another swap? I see nowhere checking that the modifier is there, or ending the event if the modifier is there when it shouldn't.
 
Also I may be misunderstanding it, but I think the event fires for the liege, so the modifier should be on the liege... I think it's how the flag that also shows up in the quote, swapping_councillors works, which cancels the lose_effect when using the remove_title command.
 
As far as I can see, it's to prevent you from manually changing the council while you're also re-assigning councillors through those events, which could break those events from working properly. As I recall, those events are pretty messy too, which is CK2+ has a third-party decision to mostly replace it (the vanilla events are only used to change councillors to vacant council spots).
 
  • 1
Reactions:
Hello, I'm trying to make a simple mod that would add more names to the list of names that are randomly chosen for a new pope. I tried following the simple mod creation guide on the wiki: creating the .mod file and accompanying .zip file, copy-pasted the "landed_titles" file from the base game (since that's where that list is located) and edited in the names I wanted to add. The mod did show up in my launcher but it did not work. I used console commands to kill off the popes but none of the newly generated ones had any of the new names I had added (and it was more than just a few). If anyone could help, I'd be very grateful.
 
Hello, I'm trying to make a simple mod that would add more names to the list of names that are randomly chosen for a new pope. I tried following the simple mod creation guide on the wiki: creating the .mod file and accompanying .zip file, copy-pasted the "landed_titles" file from the base game (since that's where that list is located) and edited in the names I wanted to add. The mod did show up in my launcher but it did not work. I used console commands to kill off the popes but none of the newly generated ones had any of the new names I had added (and it was more than just a few). If anyone could help, I'd be very grateful.
You have to put any files in the same folder structure that the game uses, so that file would go inside MyMod\common\landed_titles. If the game loads it, it should show a different checksum in the main menu (ignore the checksum in the launcher, that one is hardcoded into each version of the launcher, it is not based on mods or indeed even vanilla game files).
 
You have to put any files in the same folder structure that the game uses, so that file would go inside MyMod\common\landed_titles. If the game loads it, it should show a different checksum in the main menu (ignore the checksum in the launcher, that one is hardcoded into each version of the launcher, it is not based on mods or indeed even vanilla game files).
I did put a common folder and a landed_titles folder within that one, all within the mod's .zip file. It still wasn't working. I don't know if I perhaps wrote something wrong in the .mod file?
 
Here's what the directory and everything looks like:
mod1.PNG
mod2.PNG
mod3.PNG
mod4.PNG
mod5.PNG
mod6.PNG

(the only edits I've done in landed_titles is adding new names, I have not removed anything)
 
Here's what the directory and everything looks like:
(the only edits I've done in landed_titles is adding new names, I have not removed anything)

Don't put your files in a zip archive, put them in an actual folder. The game zips up your mod when publishing it to the Steam Workshop.
 
Code:
#Spymaster swapping
character_event = {
    id = CR.1003
    hide_window = yes

    is_triggered_only = yes

    immediate = {
        set_character_flag = swapping_councillors
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_spymaster
                }
            }
            event_target:moving_councillor = { add_trait = clubfooted }
            break = yes
        }
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_chancellor
                }
            }
            event_target:moving_councillor = {
                remove_title = job_chancellor
                clr_character_flag = is_chancellor
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_job_title = job_chancellor
                    set_character_flag = is_chancellor
                }
            }
        }

This is an event I'm trying to write, targetting the liege. The second if does not seem to work and I don't understand why; in previous versions the remove_title = job_spymaster was outside of the if and it worked (there are more if for every other council job).

I don't think it's necessary, but if more context is needed, the event chain is used to find a good spymaster among council members and put him there.

That's the whole chain, triggered by a decision targetting the liege. The first two events worked fine in my tests.
Code:
namespace = CR

#Targeted decision to flag all councilors
character_event = {
    id = CR.1001
    hide_window = yes

    is_triggered_only = yes

    immediate = {
        if = {
            limit = { has_job_title = job_chancellor }
            set_character_flag = is_chancellor
            }
        if = {
            limit = { has_job_title = job_marshal }
            set_character_flag = is_marshal
        }
        if = {
            limit = { has_job_title = job_treasurer }
            set_character_flag = is_treasurer
        }
        if = {
            limit = { has_job_title = job_spymaster }
            set_character_flag = is_spymaster
        }
        if = {
            limit = { has_job_title = job_spiritual }
            set_character_flag = is_spiritual
        }
        if = {
            limit = { has_minor_title = title_councilmember_king }
            set_character_flag = is_councilmember_king
        }
        if = {
            limit = { has_minor_title = title_councilmember_emperor }
            set_character_flag = is_councilmember_emperor
        }
        ROOT = { character_event = { id = CR.1002 } }
        ROOT = { add_trait = immortal }
    }
}

Code:
#Finding the best spymaster
character_event = {
    id = CR.1002
    hide_window = yes

    is_triggered_only = yes

    immediate = {
        ROOT = {
            random_voter = {
                limit = { 
                    can_be_spymaster_trigger = yes
                    opinion = {
                        who = ROOT
                        value > 24
                    }
                }
                preferred_limit = {
                    intrigue > 19
                    opinion = {
                        who = ROOT
                        value > 24
                    }
                }
                preferred_limit = {
                    opinion = {
                        who = ROOT
                        value > 24
                    }
                    intrigue > 14
                }
                preferred_limit = {
                    intrigue > 19
                    opinion = {
                        who = ROOT
                        value > 0
                    }
                }
                preferred_limit = {
                    opinion = {
                        who = ROOT
                        value > 0
                    }
                    intrigue > 14
                }
                preferred_limit = {
                    intrigue > 9
                    opinion = {
                        who = ROOT
                        value > 0
                    }
                }
                preferred_limit = {
                    opinion = {
                        who = ROOT
                        value > 0
                    }
                    ai_honor > -1
                }
                preferred_limit = {
                    opinion = {
                        who = ROOT
                        value > -20
                    }
                    ai_honor > -1
                }
                save_event_target_as = moving_councillor
                ROOT = { character_event = { id = CR.1003 } }
            }
        }
    }
}

Code:
#Spymaster swapping
character_event = {
    id = CR.1003
    hide_window = yes

    is_triggered_only = yes

    immediate = {
        set_character_flag = swapping_councillors
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_spymaster
                }
            }
            event_target:moving_councillor = { add_trait = clubfooted }
            break = yes
        }
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_chancellor
                }
            }
            event_target:moving_councillor = {
                remove_title = job_chancellor
                clr_character_flag = is_chancellor
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_job_title = job_chancellor
                    set_character_flag = is_chancellor
                }
            }
        }
            if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_marshal
                }
            }
            event_target:moving_councillor = {
                remove_title = job_marshal
                clr_character_flag = is_marshal
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_job_title = job_marshal
                    set_character_flag = is_marshal
                }
            }
        }
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_treasurer
                }
            }
            event_target:moving_councillor = {
                remove_title = job_treasurer
                clr_character_flag = is_treasurer
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_job_title = job_treasurer
                    set_character_flag = is_treasurer
                }
            }
        }
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_spiritual
                }
            }
            event_target:moving_councillor = {
                remove_title = job_spiritual
                clr_character_flag = is_spiritual
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_job_title = job_spiritual
                    set_character_flag = is_spiritual
                }
            }
        }
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_councilmember_king
                }
            }
            event_target:moving_councillor = {
                remove_title = title_councilmember_king
                clr_character_flag = is_councilmember_king
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_minor_title = title_councilmember_king
                    set_character_flag = title_councilmember_king
                }
            }
        }
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_councilmember_emperor
                }
            }
            event_target:moving_councillor = {
                remove_title = title_councilmember_emperor
                clr_character_flag = is_councilmember_emperor
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_minor_title = title_councilmember_emperor
                    set_character_flag = title_councilmember_emperor
                }
            }
        }
        event_target:moving_councillor = {
            give_job_title = job_spymaster
            set_character_flag = is_spymaster
        }
        clr_character_flag = is_chancellor
        clr_character_flag = is_marshal
        clr_character_flag = is_treasurer            
        clr_character_flag = is_spymaster
        clr_character_flag = is_spiritual
        clr_character_flag = is_councilmember_king
        clr_character_flag = is_councilmember_emperor
        clr_character_flag = swapping_councillors
    }
}
 
Code:
#Spymaster swapping
character_event = {
    id = CR.1003
    hide_window = yes

    is_triggered_only = yes

    immediate = {
        set_character_flag = swapping_councillors
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_spymaster
                }
            }
            event_target:moving_councillor = { add_trait = clubfooted }
            break = yes
        }
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_chancellor
                }
            }
            event_target:moving_councillor = {
                remove_title = job_chancellor
                clr_character_flag = is_chancellor
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_job_title = job_chancellor
                    set_character_flag = is_chancellor
                }
            }
        }

This is an event I'm trying to write, targetting the liege. The second if does not seem to work and I don't understand why; in previous versions the remove_title = job_spymaster was outside of the if and it worked (there are more if for every other council job).

I don't think it's necessary, but if more context is needed, the event chain is used to find a good spymaster among council members and put him there.

That's the whole chain, triggered by a decision targetting the liege. The first two events worked fine in my tests.
Code:
namespace = CR

#Targeted decision to flag all councilors
character_event = {
    id = CR.1001
    hide_window = yes

    is_triggered_only = yes

    immediate = {
        if = {
            limit = { has_job_title = job_chancellor }
            set_character_flag = is_chancellor
            }
        if = {
            limit = { has_job_title = job_marshal }
            set_character_flag = is_marshal
        }
        if = {
            limit = { has_job_title = job_treasurer }
            set_character_flag = is_treasurer
        }
        if = {
            limit = { has_job_title = job_spymaster }
            set_character_flag = is_spymaster
        }
        if = {
            limit = { has_job_title = job_spiritual }
            set_character_flag = is_spiritual
        }
        if = {
            limit = { has_minor_title = title_councilmember_king }
            set_character_flag = is_councilmember_king
        }
        if = {
            limit = { has_minor_title = title_councilmember_emperor }
            set_character_flag = is_councilmember_emperor
        }
        ROOT = { character_event = { id = CR.1002 } }
        ROOT = { add_trait = immortal }
    }
}

Code:
#Finding the best spymaster
character_event = {
    id = CR.1002
    hide_window = yes

    is_triggered_only = yes

    immediate = {
        ROOT = {
            random_voter = {
                limit = {
                    can_be_spymaster_trigger = yes
                    opinion = {
                        who = ROOT
                        value > 24
                    }
                }
                preferred_limit = {
                    intrigue > 19
                    opinion = {
                        who = ROOT
                        value > 24
                    }
                }
                preferred_limit = {
                    opinion = {
                        who = ROOT
                        value > 24
                    }
                    intrigue > 14
                }
                preferred_limit = {
                    intrigue > 19
                    opinion = {
                        who = ROOT
                        value > 0
                    }
                }
                preferred_limit = {
                    opinion = {
                        who = ROOT
                        value > 0
                    }
                    intrigue > 14
                }
                preferred_limit = {
                    intrigue > 9
                    opinion = {
                        who = ROOT
                        value > 0
                    }
                }
                preferred_limit = {
                    opinion = {
                        who = ROOT
                        value > 0
                    }
                    ai_honor > -1
                }
                preferred_limit = {
                    opinion = {
                        who = ROOT
                        value > -20
                    }
                    ai_honor > -1
                }
                save_event_target_as = moving_councillor
                ROOT = { character_event = { id = CR.1003 } }
            }
        }
    }
}

Code:
#Spymaster swapping
character_event = {
    id = CR.1003
    hide_window = yes

    is_triggered_only = yes

    immediate = {
        set_character_flag = swapping_councillors
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_spymaster
                }
            }
            event_target:moving_councillor = { add_trait = clubfooted }
            break = yes
        }
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_chancellor
                }
            }
            event_target:moving_councillor = {
                remove_title = job_chancellor
                clr_character_flag = is_chancellor
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_job_title = job_chancellor
                    set_character_flag = is_chancellor
                }
            }
        }
            if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_marshal
                }
            }
            event_target:moving_councillor = {
                remove_title = job_marshal
                clr_character_flag = is_marshal
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_job_title = job_marshal
                    set_character_flag = is_marshal
                }
            }
        }
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_treasurer
                }
            }
            event_target:moving_councillor = {
                remove_title = job_treasurer
                clr_character_flag = is_treasurer
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_job_title = job_treasurer
                    set_character_flag = is_treasurer
                }
            }
        }
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_spiritual
                }
            }
            event_target:moving_councillor = {
                remove_title = job_spiritual
                clr_character_flag = is_spiritual
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_job_title = job_spiritual
                    set_character_flag = is_spiritual
                }
            }
        }
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_councilmember_king
                }
            }
            event_target:moving_councillor = {
                remove_title = title_councilmember_king
                clr_character_flag = is_councilmember_king
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_minor_title = title_councilmember_king
                    set_character_flag = title_councilmember_king
                }
            }
        }
        if = {
            limit = {
                event_target:moving_councillor = {
                    has_character_flag = is_councilmember_emperor
                }
            }
            event_target:moving_councillor = {
                remove_title = title_councilmember_emperor
                clr_character_flag = is_councilmember_emperor
            }
            ROOT = {
                job_spymaster = {
                    remove_title = job_spymaster
                    clr_character_flag = is_spymaster
                    give_minor_title = title_councilmember_emperor
                    set_character_flag = title_councilmember_emperor
                }
            }
        }
        event_target:moving_councillor = {
            give_job_title = job_spymaster
            set_character_flag = is_spymaster
        }
        clr_character_flag = is_chancellor
        clr_character_flag = is_marshal
        clr_character_flag = is_treasurer           
        clr_character_flag = is_spymaster
        clr_character_flag = is_spiritual
        clr_character_flag = is_councilmember_king
        clr_character_flag = is_councilmember_emperor
        clr_character_flag = swapping_councillors
    }
}

First, what do you mean by targeting the liege? In a targeted decision, you right-click on a character's portrait and select an action to do them. That wording implies that this is meant to be done by a vassal, triggering his liege to change a council title.

This could just be a case of mixed-up terminology, but I bring it up just in case it means something funky is going on.

Second, at the end of your code, all of the clr_character_flag commands (except for the last one, swapping_councillors) seem meaningless, because they're all inside the ROOT scope, rather than any councilor scopes, and as far as I can tell, ROOT is the liege of the councilors. This shouldn't be affecting anything, because it's telling the game to remove flags from someone who apparently wouldn't have any of those flags to begin with, but it's a waste of code.

Third, the default scope of an event is by definition ROOT, so nesting a ROOT inside the event's default scope is redundant. This shouldn't actually cause a problem, but at times CK2's code parsing will be wonky, and I think I have had issues in the past where the game doesn't correctly parse a redundant ROOT.

Fourth. From the code of CR.1001, it looks like it's meant to be happening to a councillor, due to its searching for councilor-relevant flags. Is that right? However, CR.1002 looks like it's meant to be happening to a liege, since it checks his own voters. However, at the end of CR.1001, you call CR.1002 to happen to the ROOT of CR.1001 - which in this case is the councilor. It seems like you'd want to replace
ROOT = { character_event = { id = CR.1002 } }
with
liege = { character_event = { id = CR.1002 } }

As you might expect, liege scopes to a character's direct liege, and I think this is what you want.

However, note that ROOT = { character_event = { id = CR.1003 } } at the end of CR.1002 is in fact correct. It's nested inside the random_voter scope, and you clearly want CR.1003 to be firing for the voter's liege, so in this case, you do want to scope back to ROOT for that. I point that out, since I noted that a lot of the other ROOTs are redundant, and I want to be clear that this ROOT in particular is not redundant.

Now, for CR.1003, maybe I'm reading this incorrectly, but it looks like that only one councillor in each block is getting a new position, while the other one just has their position removed and doesn't get a new position in its place.

Those are all the things that I've spotted, there may be more that I missed.
 
  • 1
Reactions:
Thanks a lot, that's very useful feedback.

Alright, I'll need to tweak a lot of things. Part of the issue was me misunderstanding the bits of code I drew inspiration from. I'll digest it and see if I can make it work this time.