Эксперт
-
Автор темы
- #1
SS:
Для low IQ пастеров небольшая антипаста
Для low IQ пастеров с реакциями
Код:
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 пастеров с реакциями
Для просмотра содержимого вам необходимо авторизоваться.