I see that in the console, you can get the current day of the week with GetDayOfWeek but I don't see any equivalent function in Papyrus...
I need a trigger event that will only apply on Sundas
Event OnTriggerEnter(ObjectReference akActionRef) if("today is Sundas") GetOwningQuest().SetStage(800) endifEndEventThere are a few global variables about GameTime already passed and Utility.GameTimeToString() but there's no String parsing function or calendar script AFAIK
The only solution I can see is using the Global variable GamesDayPassed % 7 and offset with the first week day of the game.
Any other solution ?
thanks.

.