-
Автор темы
- #1
Код:
IClientEntity *pLocal = hackManager.pLocal();
if (Menu::Window.VisualsTab.RemoveScope.GetState() && pLocal->IsScoped() && Interfaces::Engine->IsConnected() && Interfaces::Engine->IsInGame() && pLocal->IsAlive())
{
int width, height;
Interfaces::Engine->GetScreenSize(width, height);
Render::Line(0, height * 0.5, width, height * 0.5, Color(0, 0, 0, 255));
Render::Line(width * 0.5, 0, width * 0.5, height, Color(0, 0, 0, 255));
}
if (!strcmp("HudZoom", Interfaces::Panels->GetName(vguiPanel)) && Menu::Window.VisualsTab.RemoveScope.GetState() && pLocal->IsScoped() && Interfaces::Engine->IsConnected() && Interfaces::Engine->IsInGame() && pLocal->IsAlive())
{
return;
}
oPaintTraverse(pPanels, vguiPanel, forceRepaint, allowForce);