I do not know where to ask about this kinda stuff so I thought why not ask Stackoverflow?
I wonder if it's possible to get the current day somehow, with Lua?
Something about os.date() but I have no idea how to do it. Or maybe os.time() ?
like:
local day = os.time()somethingsomething
And then check
if (day == 'monday') then
print('It is monday')
elseif (day == 'tuesday') then
print('It is tuesday!')
end