aimbot smooth

This commit is contained in:
Oscar
2025-07-17 13:59:28 +03:00
parent e8b1d227cc
commit 4d216b662b
7 changed files with 100 additions and 84 deletions

View File

@@ -49,4 +49,5 @@ namespace Config {
bool rcs = 0;
bool fov_circle = 0;
ImVec4 fovCircleColor = ImVec4(1.0f, 1.0f, 1.0f, 1.0f);
float aimbot_smooth = 0.f;
}

View File

@@ -48,4 +48,5 @@ namespace Config {
extern bool rcs;
extern bool fov_circle;
extern ImVec4 fovCircleColor;
extern float aimbot_smooth;
}

View File

@@ -119,6 +119,7 @@ namespace internal_config
j["antiflash"] = Config::antiflash;
j["rcs"] = Config::rcs;
j["fov_circle"] = Config::fov_circle;
j["aimbot_smooth"] = Config::aimbot_smooth;
j["enemyChamsInvisible"] = Config::enemyChamsInvisible;
j["enemyChams"] = Config::enemyChams;
@@ -217,6 +218,7 @@ namespace internal_config
Config::aimbot = j.value("aimbot", false);
Config::rcs = j.value("rcs", false);
Config::aimbot_fov = j.value("aimbot_fov", 0.f);
Config::aimbot_smooth = j.value("aimbot_smooth", 0.f);
Config::antiflash = j.value("antiflash", false);