ESO Lua File v100010

ingame/map/worldmapcorner.lua

[◄ back to folders ]
1
2
3
4
5
6
7
8
9
local g_nextUpdate = nil
function ZO_WorldMapCorner_OnUpdate(self, time)
    if(g_nextUpdate == nil or time > g_nextUpdate) then
        local formattedTime, nextUpdateIn = ZO_FormatClockTime()
        self:GetNamedChild("Time"):SetText(formattedTime)
        g_nextUpdate = time + nextUpdateIn
    end
end