Исходник Gamesense watermark with out полосочка(line)

Эксперт
Статус
Оффлайн
Регистрация
30 Дек 2019
Сообщения
1,967
Реакции[?]
958
Поинты[?]
19K
SS:1585749890564.png
Код:
void Visuals::DrawWatermark()
{
    if (XSystemCFG.watermark)
    {
        int alpha;
        int centerW, centerH;
        int monstw, monsth;
        int w, h;
        g_EngineClient->GetScreenSize(w, h);
        centerW = w / 2;
        centerH = h / 2;
        monstw = w;
        monsth = h;
        alpha = 255;
        
        g_VGuiSurface->DrawSetColor(Color(0, 0, 0));
        g_VGuiSurface->DrawFilledRect((centerW * 2) - 410 + 210, 9, (centerW * 2) - 410 + 192 + 210, 9 + 26);
        g_VGuiSurface->DrawSetColor(Color(60, 60, 60));
        g_VGuiSurface->DrawFilledRect((centerW * 2) - 409 + 210, 10, (centerW * 2) - 409 + 190 + 210, 10 + 24);
        g_VGuiSurface->DrawSetColor(Color(38, 38, 38));
        g_VGuiSurface->DrawFilledRect((centerW * 2) - 408 + 210, 11, (centerW * 2) - 408 + 188 + 210, 11 + 22);
        g_VGuiSurface->DrawSetColor(Color(60, 60, 60));
        g_VGuiSurface->DrawFilledRect((centerW * 2) - 405 + 210, 14, (centerW * 2) - 405 + 182 + 210, 14 + 16);
        g_VGuiSurface->DrawSetColor(Color(28, 28, 28));
        g_VGuiSurface->DrawFilledRect((centerW * 2) - 404 + 210, 15, (centerW * 2) - 404 + 180 + 210, 15 + 14);
        static int fps, old_tick_count;
        if ((g_GlobalVars->tickcount - old_tick_count) > 50) {
            fps = static_cast<int>(1.f / g_GlobalVars->frametime);
            old_tick_count = g_GlobalVars->tickcount;
        }
        std::stringstream ss;
        ss << "game         [       ] | " << "FPS:" << fps << " | " << GetTimeString().c_str() << "" ;
        DrawString(ui_font, (centerW * 2) - 376 + 210, 21, Color(90, 240, 0, 255), FONT_LEFT, "sense");
        DrawString(ui_font, (centerW * 2) - 344 + 210, 21, Color(90, 240, 0, 255), FONT_LEFT, "Beta");
        DrawString(ui_font, (centerW * 2) - 400 + 210, 21, Color(220, 220, 220, 255), FONT_LEFT, ss.str().c_str());
    }
}
Для low IQ пастеров небольшая антипаста
Для low IQ пастеров с реакциями
 
working ?
Забаненный
Статус
Оффлайн
Регистрация
9 Ноя 2019
Сообщения
384
Реакции[?]
208
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Пипец что такое getfontsize?
 
Сверху Снизу