2020-01-22 14:25:58 +00:00
|
|
|
-- Copyright (c) 2020 David Vogel
|
|
|
|
--
|
|
|
|
-- This software is released under the MIT License.
|
|
|
|
-- https://opensource.org/licenses/MIT
|
|
|
|
|
2018-08-03 09:22:18 +00:00
|
|
|
net.Receive("D3stats_UpdateXP", function()
|
|
|
|
local XP = net.ReadUInt(32)
|
2016-10-05 12:30:35 +00:00
|
|
|
|
2018-08-03 09:22:18 +00:00
|
|
|
--print("XP update: " .. tostring(XP))
|
2016-10-05 12:30:35 +00:00
|
|
|
|
2018-08-03 09:22:18 +00:00
|
|
|
if D3stats and D3stats.D3statsOverlay then
|
|
|
|
D3stats.D3statsOverlay:StatsUpdate(XP, D3stats.CalculateLevel(XP))
|
2016-10-05 12:30:35 +00:00
|
|
|
end
|
2018-08-03 09:22:18 +00:00
|
|
|
end)
|