Is there a overlord variable hoi4 for on_startup?
I am making a mod for hoi4 and I created an occupation_zone autonomy zone. In my mod, in the on_action folder, I was wondering if I could do something like this:
on_startup = {
effect = {
every_country = {
limit = {
is_subject = yes
has_autonomy_level = autonomy_occupied_zone
}
subject = {
set_cosmetic_tag = overlord
}
}
}
}
Any information or alternatives would be appreciated.