From c60da06989d80808d99f5db98187a22eafd38b75 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Mon, 3 Apr 2023 02:39:31 +0200 Subject: [PATCH] Chams doesnt need to ignore lifestate and dormant entities --- cheats/chams.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/cheats/chams.py b/cheats/chams.py index 1b017b0..872ec06 100644 --- a/cheats/chams.py +++ b/cheats/chams.py @@ -36,14 +36,6 @@ class Chams(Hack): if mem.read_int(entity + offset["m_iTeamNum"]) == mem.read_int(local_player + offset["m_iTeamNum"]): continue - # Ignore dormant - if mem.read_bool(entity + offset["m_bDormant"]): - continue - - # Check if ennemy is alive - if mem.read_int(entity + offset["m_lifeState"]): - continue - # Space between values i = mem.read_int( entity + offset["m_iGlowIndex"]) * offset["glow_obj_size"]