Skip to content

Commit

Permalink
Made health bar thinner
Browse files Browse the repository at this point in the history
  • Loading branch information
Fr0go1 committed Oct 20, 2023
1 parent 4d03055 commit d54b5e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CS2_External/Cheats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -502,13 +502,13 @@ void Cheats::Run()
{
// Vertical
HealthBarPos = { Rect.x - 7.f,Rect.y };
HealthBarSize = { 7 ,Rect.w };
HealthBarSize = { 4 ,Rect.w };
}
else
{
// Horizontal
HealthBarPos = { Rect.x + Rect.z / 2 - 70 / 2,Rect.y - 13 };
HealthBarSize = { 70,8 };
HealthBarSize = { 70,4 };
}
Render::DrawHealthBar(EntityAddress, 100, Entity.Pawn.Health, HealthBarPos, HealthBarSize, MenuConfig::HealthBarType);
}
Expand Down

0 comments on commit d54b5e2

Please sign in to comment.