from cheats.aimbot import *
from cheats.bhop import *
from cheats.chams import *
from cheats.glow import *
from cheats.noflash import *
from cheats.norecoil import *
from cheats.radarhack import *
from cheats.trigger import *
class Cheat(Bhop, Radarhack, Glow, Trigger, Norecoil, Noflash, Chams, Aimbot):
def __init__(self) -> None:
super().__init__()
self.cheats_list = [func for func in dir(self)
# Function
if callable(getattr(self, func))
# User defined
if not func.startswith("_")
# Hack loop
if not func == "hack_loop"
# Utils
if not func.startswith("find_")]