Event based off real world time?

Hi, so I want to create a store that refreshes at midnight in the UK every day, I’m not sure on the blueprints needed to base the timer off of a real world time that is networked across the server.

Thank you

You’re probably looking for this:

(note that the servers system time needs to be accurate for this to be accurate)

This is helpful thank you but is there a way to set a particular time based off of server times and then a way to loop this?

Sorry for the delay and I hope I understood that right.

The 5 seconds long timeline auto plays, once it finishes every 5 seconds, it checks for the 23rd day of the month and if it’s 3am.
(since it’s 3am JST, 23rd of June for me, to test if it’s working)

You could also check on event tick but I don’t think it is necessary to do it that often.

The “do once” node might also be of interest, in case you don’t want to repeat your refresh all the time and reset once the time has passed, so when the if condition returns false.

Thank you very much! This is perfect.