You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
238 B
Lua

net.Receive("D3stats_UpdateXP", function()
local XP = net.ReadUInt(32)
8 years ago
--print("XP update: " .. tostring(XP))
8 years ago
if D3stats and D3stats.D3statsOverlay then
D3stats.D3statsOverlay:StatsUpdate(XP, D3stats.CalculateLevel(XP))
8 years ago
end
end)