D3stats/lua/d3stats/cl_network.lua

9 lines
247 B
Lua
Raw Normal View History

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