util.AddNetworkString("Example")
hook.Add("HolyLib:OnSourceTVNetMessage", "Example", function(client, bf)
local name = util.NetworkIDToString(bf:ReadShort())) -- Reads the header
print(name, bf:ReadString())
end)
---- Client
net.Start("Example")
net.WriteString("Hello World from CHLTVClient");
net.SendToServer()