Пользователь
Пользователь
- Статус
- Оффлайн
- Регистрация
- 12 Июн 2019
- Сообщения
- 864
- Реакции
- 125
Код:
bool __fastcall Hooks::SendNetMsg(INetChannel* pNetChan, void* edx, INetMessage& msg, bool bForceReliable, bool bVoice)
{
if (msg.GetType() == 14) // Return and don't send messsage if its FileCRCCheck
return false;
if (msg.GetGroup() == 9) // Fix lag when transmitting voice and fakelagging
bVoice = true;
return g_Hooks.oSendNetMsg(pNetChan, msg, bForceReliable, bVoice);
}