Date and time system
I'm extremely new and I need help with a date and time system.
I managed to make one learning from old reddit posts and it works but I have 1 problem: the time goes on forever! The days of the week pass normally but then the time will say "48:00" lmao can someone help me out a bit please?
Here is the code I'm using in StoryInit:
<<set $min to 0>>
<<set setup.days to ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]>>
<<if $min >= 1440>>
<<set $min -= 1440>>
<<set $day = ($day + 1) % 7>>
<</if>>
I use <<set $min += >> to pass minutes.
THANK YOU SO MUCH!