Holiday gift from all of us to all of you - Paradox Yuletide Carol

  • 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 wish that the song played year round IRL and not just in December. I was pleasantly surprised when it came on while I was playing the other day.
Or you could just extract it from the game files; that way you also get the full quality. Just like when you extract the game music so you can hear it all the time.

I love this music :) although it is a bit strange it plays 6x as much as any other song... even stranger considering I have all the music dlcs available.. is it set to like factor = 20? :D
No. Actually only a factor 2.

EUIV:

Code:
# Happy Holidays from Paradox Development Studio

song = {
	name = "pdxmascarol.ogg"
	
	chance = {
		modifier = {
			factor = 0 
			NOT = {	real_month_of_year = 11 }  # December
		}
		modifier = {
			factor = 2
			real_month_of_year = 11  # December
		}		

		
	}
}

CKII

Code:
# Happy Holidays from Paradox Development Studio
# Plays during December (real world clock).

song = {
	name = "pdxmascarol.ogg"
	
	chance = {
		factor = 2
		modifier = {
			factor = 0 
			NOT = {	real_month_of_year = 11 }  # December
		}		
	}
}
 
Wait Real month of year is actual code? can modders use it too?
What I don't understand is why December is the 11th month according to Paradox; is Johan born in February and tired of being second to January?
 
Programming arrays tend to start from 0? 0 = Jan ... 11 = Dec?
Of course; I am an idiot. How many times haven't I tried to access a non existing entry because I forgot that when learning C.
 
  • 1
Reactions: