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.

14 lines
368 B
Lua

-- Copyright (c) 2020 David Vogel
--
-- This software is released under the MIT License.
-- https://opensource.org/licenses/MIT
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)