• How bypass net.Incoming?
    0 replies, posted
Hello i need to bypass net.Incoming from client? How i can do that?     function net.Incoming(len, client)         local i = net.ReadHeader()         local strName = util.NetworkIDToString(i)                 if !strName then return end        print(client) print(strName) nwlog = nwlog .. client:SteamID() .. ' sent ' .. strName .. ' (' .. len .. 'b)\n'                 local func = net.Receivers[strName:lower()]         if !func then return end                 len = len - 16         func(len, client)     end
Sorry, you need to Log In to post a reply to this thread.