From 61c984fdbaa9efcf7e298a68dc5c80e0360b1e7b Mon Sep 17 00:00:00 2001 From: RC <63776072+racistcop@users.noreply.github.com> Date: Sat, 30 Oct 2021 03:40:58 +0800 Subject: [PATCH] add(aimbot): check if bonked --- src/hacks/Aimbot.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/hacks/Aimbot.cpp b/src/hacks/Aimbot.cpp index 2710bf10..287cd670 100644 --- a/src/hacks/Aimbot.cpp +++ b/src/hacks/Aimbot.cpp @@ -623,6 +623,9 @@ bool ShouldAim() // Deadringer out? if (CE_BYTE(g_pLocalPlayer->entity, netvar.m_bFeignDeathReady)) return false; + // Is bonked? + if (HasCondition(g_pLocalPlayer->entity)) + return false; // Is taunting? if (HasCondition(g_pLocalPlayer->entity)) return false;