Jump to content

Module:Systime: Difference between revisions

m
More debugging!
m (Remove debugging code.)
m (More debugging!)
Line 4: Line 4:


function p.toSystime(_, year, month, day, hour, min, sec)
function p.toSystime(_, year, month, day, hour, min, sec)
time = os.time({year = year, month = month ~= nil and month or 1, day = day ~= nil and day or 1, hour = hour, min = min, sec = sec})
return year
date = os.date("*t", time)
-- time = os.time({year = year, month = month ~= nil and month or 1, day = day ~= nil and day or 1, hour = hour, min = min, sec = sec})
yday = month ~= nil and day ~= nil and "+" .. date.yday or ""
-- date = os.date("*t", time)
tdec = date.hour / 24 + date.min / 60 / 24 + date.sec / 60 / 60 / 24
-- yday = month ~= nil and day ~= nil and "+" .. date.yday or ""
tdec = hour ~= nil and string.sub(math.floor(tdec * 100 + 0.5) / 100, 2) or ""
-- tdec = date.hour / 24 + date.min / 60 / 24 + date.sec / 60 / 60 / 24
year = date.year - 2124
-- tdec = hour ~= nil and string.sub(math.floor(tdec * 100 + 0.5) / 100, 2) or ""
return year .. yday .. tdec
-- year = date.year - 2124
-- return year .. yday .. tdec
end
end


return p
return p