This repository has been archived on 2023-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
csh/cheat.py

28 lines
908 B
Python
Raw Normal View History

2023-03-31 18:52:22 +02:00
from cheats.aimbot import *
from cheats.bhop import *
from cheats.chams import *
2023-03-31 21:10:52 +02:00
from cheats.fov import *
2023-03-31 18:52:22 +02:00
from cheats.glow import *
from cheats.noflash import *
from cheats.norecoil import *
from cheats.radarhack import *
from cheats.trigger import *
2023-03-30 23:19:17 +02:00
2023-04-01 15:22:13 +02:00
class Cheat(Bhop, Radarhack, Glow, Trigger,
Norecoil, Noflash, Chams, Aimbot,
Fov,
):
2023-03-30 23:19:17 +02:00
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_")]