Basically, I have managed to create a common event-based day and time system. Basically, I used variables like timeDay, timeMonth, etc. etc. so when:
if timeDay >= 30, then timeMonth += 1
Something like that... I'm just wondering what will happen if I want to show what month it currently is during a message? Like, obviously, these variables store integers-----but month names like "January" is a string. And if I use normal conditional branches, it would be too long...
Are there an plugins out there that when used in a message, it outputs "January" when timeMonth == 1, "February" when timeMonth == 2, etc. etc.
I'm thinking of using a switch or using enum? But I don't really know where I'll start or what to do to make something like that works...
Thanks~~