function main()
while true do
local t = os.date("*t",os.time())
-- t.wday 是星期 星期天为1 星期1为2 以此类推
-- t.hour 是小时 0-23
-- t.min 分钟 0-59
if (t.wday == 4 or t.wday == 6 or t.wday == 1) and (t.hour >= 18 or t.hour <=20) and t.min == 30 then
start()
else
mSleep(1000)
end
end
end
function start()
--实际脚本内容
end