From 90c4af2653f14ec386a7f8f3a69ee34cc9c3fc4a Mon Sep 17 00:00:00 2001 From: GLoOoccK <155241167+GLoOoccK@users.noreply.github.com> Date: Mon, 1 Jun 2026 17:00:50 -0300 Subject: [PATCH 1/4] cl_dll: hud: timer: Fix Draw --- cl_dll/hud/timer.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cl_dll/hud/timer.cpp b/cl_dll/hud/timer.cpp index c5d3959f..9e9edbd3 100644 --- a/cl_dll/hud/timer.cpp +++ b/cl_dll/hud/timer.cpp @@ -60,6 +60,10 @@ int CHudTimer::Draw( float fTime ) if (!(gHUD.m_iWeaponBits & (1<<(WEAPON_SUIT)) )) return 1; + + if( g_iUser1 == OBS_IN_EYE ) + return 1; + int r, g, b; // time must be positive int minutes = max( 0, (int)( m_iTime + m_fStartTime - gHUD.m_flTime ) / 60); From de47902064908446a107c1a970607a107e5ef055 Mon Sep 17 00:00:00 2001 From: GLoOoccK <155241167+GLoOoccK@users.noreply.github.com> Date: Mon, 1 Jun 2026 17:01:19 -0300 Subject: [PATCH 2/4] cl_dll: hud: money: Fix Draw --- cl_dll/hud/money.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cl_dll/hud/money.cpp b/cl_dll/hud/money.cpp index 5c889828..f9141811 100644 --- a/cl_dll/hud/money.cpp +++ b/cl_dll/hud/money.cpp @@ -66,6 +66,9 @@ int CHudMoney::Draw(float flTime) if (!(gHUD.m_iWeaponBits & (1<<(WEAPON_SUIT)))) return 1; + if( g_iUser1 == OBS_IN_EYE ) + return 1; + int r, g, b, alphaBalance; m_fFade -= gHUD.m_flTimeDelta; if( m_fFade < 0) From 86ec9488380a85c34bc5bf61377b027b4151d98e Mon Sep 17 00:00:00 2001 From: GLoOoccK <155241167+GLoOoccK@users.noreply.github.com> Date: Mon, 1 Jun 2026 17:07:14 -0300 Subject: [PATCH 3/4] cl_dll: hud: timer: Draw --- cl_dll/hud/timer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cl_dll/hud/timer.cpp b/cl_dll/hud/timer.cpp index 9e9edbd3..31cdc062 100644 --- a/cl_dll/hud/timer.cpp +++ b/cl_dll/hud/timer.cpp @@ -36,6 +36,7 @@ version. #include "vgui_parser.h" #include #include "draw_util.h" +#include "pm_shared.h" int CHudTimer::Init() { From acac95562ff6fd8697b8beb3b3a39fc0572e87d5 Mon Sep 17 00:00:00 2001 From: GLoOoccK <155241167+GLoOoccK@users.noreply.github.com> Date: Mon, 1 Jun 2026 17:07:45 -0300 Subject: [PATCH 4/4] cl_dll: hud: money: Draw --- cl_dll/hud/money.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cl_dll/hud/money.cpp b/cl_dll/hud/money.cpp index f9141811..d02ee2dc 100644 --- a/cl_dll/hud/money.cpp +++ b/cl_dll/hud/money.cpp @@ -38,6 +38,7 @@ version. #include #include "vgui_parser.h" #include "draw_util.h" +#include "pm_shared.h" int CHudMoney::Init( ) {