Подпишитесь на наш Telegram-канал, чтобы всегда быть в курсе важных обновлений! Перейти

Гайд [CSGOSimple] RecoilCross

  • Автор темы Автор темы Imfenx
  • Дата начала Дата начала
Забаненный
Забаненный
Статус
Оффлайн
Регистрация
18 Июл 2018
Сообщения
139
Реакции
24
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
//Paste this into Visuals.cpp

Код:
Expand Collapse Copy
void Visuals::Misc::RenderPunchCross()
{   
    
    int w, h;
        
    g_EngineClient->GetScreenSize(w, h);


    g_VGuiSurface->DrawSetColor(g_Options.color_esp_c4);   //<-- I am too lazy to make personal color for it.Yellow looks like good color
    
    int x = w / 2;
    int y = h / 2;
    int dy = h / 97;
    int dx = w / 97;

    QAngle punchAngle = g_LocalPlayer->m_aimPunchAngle();
    x -= (dx*(punchAngle.yaw));
    y += (dy*(punchAngle.pitch));




    g_VGuiSurface->DrawLine(x - 8, y, x + 8, y); //If you want to make the PunchCross bigger or smaller just change the numbers
    g_VGuiSurface->DrawLine(x, y - 8, x, y + 8);
    
    
}
//Paste this into Visuals.hpp,under Misc section, or whatever,just dont forget to change the Visuals::Misc::RenderPunchCross to Visuals::Player::RenderPunchCross
Код:
Expand Collapse Copy
void RenderPunchCross();


/Paste this under void __stdcall hkPaintTraverse in Hooks.cpp,almost at the end


Код:
Expand Collapse Copy
if (g_Options.esp_punchcross)


  Visuals::Misc::RenderPunchCross();


//This goes into Options.hpp



Код:
Expand Collapse Copy
OPTION(bool, esp_punchcross, false);
//This into menu

Код:
Expand Collapse Copy
ImGui::Checkbox("Punch Crosshair", &g_Options.esp_punchcross);
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Назад
Сверху Снизу