I'm sure this is a very basic question, but: I'm making an in-game clock system, and I want the story to change whether $timeofday is either "AM" or "PM" depending on the value of $hour. I can get "if" to change text depending on $hour, but I can't make it change $timeofday, which I'd like to use to set up different scenes depending on the time of day. How do I do this simple interaction?
I guess to add an additional bit of info, my beginner brain always thinks I'll be able to do:
(if: $hour < 12)(set: $timeofday to AM)
But of course that doesn't work.