split lines
This commit is contained in:
parent
d71860ca68
commit
4ad13f1a03
2 changed files with 6 additions and 2 deletions
5
cheat.py
5
cheat.py
|
@ -9,7 +9,10 @@ from cheats.radarhack import *
|
||||||
from cheats.trigger import *
|
from cheats.trigger import *
|
||||||
|
|
||||||
|
|
||||||
class Cheat(Bhop, Radarhack, Glow, Trigger, Norecoil, Noflash, Chams, Aimbot, Fov):
|
class Cheat(Bhop, Radarhack, Glow, Trigger,
|
||||||
|
Norecoil, Noflash, Chams, Aimbot,
|
||||||
|
Fov,
|
||||||
|
):
|
||||||
def __init__(self) -> None:
|
def __init__(self) -> None:
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
|
|
|
@ -80,7 +80,8 @@ class Aimbot(Hack):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Ignore allies
|
# Ignore allies
|
||||||
if mem.read_int(entity + offset["m_iTeamNum"]) == mem.read_int(local_player + offset["m_iTeamNum"]):
|
if mem.read_int(entity + offset["m_iTeamNum"]) == (
|
||||||
|
mem.read_int(local_player + offset["m_iTeamNum"])):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Ignore dormant
|
# Ignore dormant
|
||||||
|
|
Reference in a new issue