Гайд Fixing csgosimple glove changer

Начинающий
Статус
Оффлайн
Регистрация
31 Мар 2018
Сообщения
7
Реакции[?]
0
Поинты[?]
0
So today ur gonna learn how to fix ur csgosimple paste :D
i'm doing this small guide because i'm tired of people asking how to fix it, for some reason the read packet entities is not properly calling the gloves anymore, so all that u have to do is move where ur calling your skin changer to the frame stage notify like that:
C++:
YOUR FRAME STAGE NOTIFY HOOK
{
      if (stage == FRAME_NET_UPDATE_POSTDATAUPDATE_START)
      {
          Skins::OnFrameStageNotify(false);

          if (g_EngineClient->IsInGame())
          {
              Skins::AgentChanger(stage);
          }
      }
      if (stage == FRAME_NET_UPDATE_END)
      {
          Skins::OnFrameStageNotify(true);
      }
... the rest of your code
}
 
Сверху Снизу