Mission board that refreshes everyday

I want to create a mission board that refreshes at a specific time every day. It seems like I have to create a loop that refreshes every 24 hours to do so. Wouldn’t it be very taxing on the memory? Are there other better ways?

1 Like

24 hours loop isn’t that costly. You should take a look into os.time, which returns seconds passed since 1970 January 1st in UTC time. Use the number for seconds per 24 hours to your advantage.