D3stats/lua/d3stats/cl_network.lua

9 lines
238 B
Lua
Raw Normal View History

net.Receive("D3stats_UpdateXP", function()
local XP = net.ReadUInt(32)
2016-10-05 12:30:35 +00:00
--print("XP update: " .. tostring(XP))
2016-10-05 12:30:35 +00:00
if D3stats and D3stats.D3statsOverlay then
D3stats.D3statsOverlay:StatsUpdate(XP, D3stats.CalculateLevel(XP))
2016-10-05 12:30:35 +00:00
end
end)