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

Shadow86

Lord General
134 Badges
Feb 10, 2006
1.281
722
  • 500k Club
  • Rome Gold
  • Imperator: Rome Deluxe Edition
  • Imperator: Rome - Magna Graecia
  • Crusader Kings Complete
  • Crusader Kings II
  • Crusader Kings III
  • Europa Universalis III Complete
  • Europa Universalis IV: Pre-order
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Rights of Man
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: Third Rome
  • Europa Universalis IV: Dharma
  • Europa Universalis IV: Mandate of Heaven
  • Europa Universalis IV: Cradle of Civilization
  • Europa Universalis IV: Rule Britannia
  • Europa Universalis IV: Golden Century
  • Europa Universalis 4: Emperor
  • Sengoku
  • March of the Eagles
  • Victoria: Revolutions
  • Victoria 2
  • Victoria 3 Sign Up
  • Hearts of Iron III
  • Hearts of Iron IV: Colonel
  • Hearts of Iron IV: Together for Victory
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: La Resistance
  • Hearts of Iron IV: Expansion Pass
  • Battle for Bosporus
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron IV: By Blood Alone
  • Stellaris: Galaxy Edition
  • Stellaris: Synthetic Dawn
  • Stellaris - Path to Destruction bundle
  • Stellaris: Apocalypse
  • Stellaris: Megacorp
  • Stellaris: Ancient Relics
  • Stellaris: Federations
  • Stellaris: Nemesis
I heard DAIM reminds you whenever your sliders can be changed. I'm using vanilla DD, so I was wondering which is the specific event that handles that, since it's a most interesting idea. I usually forget to move my sliders for months after they can be changed. :p
 

Shadow86

Lord General
134 Badges
Feb 10, 2006
1.281
722
  • 500k Club
  • Rome Gold
  • Imperator: Rome Deluxe Edition
  • Imperator: Rome - Magna Graecia
  • Crusader Kings Complete
  • Crusader Kings II
  • Crusader Kings III
  • Europa Universalis III Complete
  • Europa Universalis IV: Pre-order
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Rights of Man
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: Third Rome
  • Europa Universalis IV: Dharma
  • Europa Universalis IV: Mandate of Heaven
  • Europa Universalis IV: Cradle of Civilization
  • Europa Universalis IV: Rule Britannia
  • Europa Universalis IV: Golden Century
  • Europa Universalis 4: Emperor
  • Sengoku
  • March of the Eagles
  • Victoria: Revolutions
  • Victoria 2
  • Victoria 3 Sign Up
  • Hearts of Iron III
  • Hearts of Iron IV: Colonel
  • Hearts of Iron IV: Together for Victory
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: La Resistance
  • Hearts of Iron IV: Expansion Pass
  • Battle for Bosporus
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron IV: By Blood Alone
  • Stellaris: Galaxy Edition
  • Stellaris: Synthetic Dawn
  • Stellaris - Path to Destruction bundle
  • Stellaris: Apocalypse
  • Stellaris: Megacorp
  • Stellaris: Ancient Relics
  • Stellaris: Federations
  • Stellaris: Nemesis
Nevermind, I already found it. :)
 

rich-love

Lt. General
2 Badges
Jul 13, 2002
1.695
1
  • Hearts of Iron III
  • 500k Club
ZeeDee said:
ooh ooh. where is it? I'm looking too

It's in the 'japanmanpower.txt' file in the events subfolder (assuming you have DAIM installed). Event body:

Code:
####################################
# Slider Reminder Event
####################################
event = {
	id = 126570
	random = no

	persistent = yes

	name = "Slider Reminder Event"
	desc = "You can move one of your domestic sliders now"
	style = 0

	trigger = {
		ai = no
		OR = {
			can_change_policy = { type = democratic value = 1 }
			can_change_policy = { type = democratic value = -1 }
			can_change_policy = { type = political_left value = 1 }
			can_change_policy = { type = political_left value = -1 }
			can_change_policy = { type = freedom value = 1 }
			can_change_policy = { type = freedom value = -1 }
			can_change_policy = { type = free_market value = 1 }
			can_change_policy = { type = free_market value = -1 }
			can_change_policy = { type = professional_army value = 1 }
			can_change_policy = { type = professional_army value = -1 }
			can_change_policy = { type = defense_lobby value = 1 }
			can_change_policy = { type = defense_lobby value = -1 }
			can_change_policy = { type = interventionism value = 1 }
			can_change_policy = { type = interventionism value = -1 }
		}
	}

        date = { day = 0 month = january year = 1936 }
        offset = 7
	deathdate = { day = 30 month = december year = 1953 }

	action_a = {
		name = "Thanks for the information"
		command = { }
	}
	action_b = {
		name = "Thanks, but don't remind me again"
		command = { type = sleepevent which = 126570 }
	}
}