mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-15 21:03:46 +03:00
31 lines
1.2 KiB
Lua
31 lines
1.2 KiB
Lua
--[[
|
|
| This file was obtained through the combined efforts
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
|
|
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
|
|
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
|
--]]
|
|
|
|
eProtect = eProtect or {}
|
|
eProtect.data = eProtect.data or {}
|
|
eProtect.data.netLogging = eProtect.data.netLogging or {}
|
|
|
|
hook.Add("eP:PostNetworking", "eP:LogNetworking", function(ply, net, len)
|
|
if !net or len == nil or eProtect.config["disabledModules"]["net_logger"] then return end
|
|
eProtect.data.netLogging[net] = eProtect.data.netLogging[net] or {called = 0, len = 0, playercalls = {}}
|
|
|
|
eProtect.data.netLogging[net].called = eProtect.data.netLogging[net].called + 1
|
|
eProtect.data.netLogging[net].len = eProtect.data.netLogging[net].len + len
|
|
|
|
if IsValid(ply) and ply:IsPlayer() then
|
|
local sid = ply:SteamID()
|
|
eProtect.data.netLogging[net].playercalls[sid] = eProtect.data.netLogging[net].playercalls[sid] or 0
|
|
eProtect.data.netLogging[net].playercalls[sid] = eProtect.data.netLogging[net].playercalls[sid] + 1
|
|
end
|
|
|
|
if eProtect.queueNetworking then
|
|
eProtect.queueNetworking(nil, "netLogging")
|
|
end
|
|
end) |