• 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.
Can't be done directly, so you would have to fire an event two days later that clears the flag.

Note that there are dedicated forums for modding.
 
  • 1Like
Reactions:
Code:
namespace = some_namespace

character_event = {
	id = some_namespace.2
	
	is_triggered_only = yes
	hide_window = yes
	
	immediate = {
		clr_global_flag = some_global_flag
	}
}

You would call this event with a delay of two days right after you set the global flag.
Code:
character_event = { 
	id = some_namespace.2
	days = 2
}
 
Code:
namespace = some_namespace

character_event = {
    id = some_namespace.2
   
    is_triggered_only = yes
    hide_window = yes
   
    immediate = {
        clr_global_flag = some_global_flag
    }
}

You would call this event with a delay of two days right after you set the global flag.
Code:
character_event = {
    id = some_namespace.2
    days = 2
}
Ok I think I understand now thx for the info appreciate it!
 
VUmzq32.gif
to the User Mods subforum.
 
  • 1Like
Reactions: