User фри софтов
-
Автор темы
- #1
Как перевести UnixTime на московское или +2 от МСК??
JavaScript:
local thing = Utils.UnixTime() / 1000;
local seconds = math.floor(thing)%60;
local minutes = math.floor(thing / 60)%60;
local hours = math.floor(thing / 60 / 60 / 60 / 60 / 60 / 60)%24;
if seconds < 10 then seconds = "0"..seconds end
if minutes < 10 then minutes = "0"..minutes end
if hours < 10 then hours = "0"..hours end
clock_water = "["..hours..":"..minutes..":"..seconds.."]"
nexttext = " | " .. clock_water .. " time"