The title pretty much explains my problem. I want to have it so at some point in the day (the time doesn’t really matter) something updates based on a table similar to this:
Local updateschedule = {
["Monday"] = {} --information about what happens on mondays
["Tuesday"] ={} --info for Tuesdays.
---and so forth for all 7 days
}
I want each server, when first started, to check the day it is and look at the table to update what needs to be updated. Also, when a day is finished and a new day starts to do the same. I considered using os.time but I’m not sure if I can use to check what day it is. Any suggestions or corrections?