From 5d052acc631182d1c3dae026da2b91c392c587d8 Mon Sep 17 00:00:00 2001 From: nullifiedcat Date: Sat, 4 Feb 2017 16:04:39 +0300 Subject: [PATCH] Fixed FOV --- cathook/src/common.h | 4 ++-- cathook/src/hacks/Aimbot.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cathook/src/common.h b/cathook/src/common.h index 93d07ace..0f78edc2 100644 --- a/cathook/src/common.h +++ b/cathook/src/common.h @@ -51,9 +51,9 @@ #define SQR(x) x * x #ifndef CATHOOK_BUILD_NUMBER -#define CATHOOK_BUILD_NUMBER "-1" +#define CATHOOK_BUILD_NUMBER "LATEST" #endif -#define CATHOOK_BUILD_NAME "Sweet Roll" +#define CATHOOK_BUILD_NAME "Cinnamon Pie" #define CON_NAME "cat" #define CON_PREFIX CON_NAME "_" diff --git a/cathook/src/hacks/Aimbot.cpp b/cathook/src/hacks/Aimbot.cpp index 491d9ff2..3ba6176d 100644 --- a/cathook/src/hacks/Aimbot.cpp +++ b/cathook/src/hacks/Aimbot.cpp @@ -403,7 +403,7 @@ int Aimbot::ShouldTarget(CachedEntity* entity) { } } if (v_fFOV->GetFloat() > 0.0f && (GetFov(g_pLocalPlayer->v_OrigViewangles, g_pLocalPlayer->v_Eye, resultAim) > v_fFOV->GetFloat())) return false; - return 0; + return 25; } else if (entity->m_Type == ENTITY_BUILDING) { if (!v_bAimBuildings->GetBool()) return 19; int team = CE_INT(entity, netvar.iTeamNum);