#ХЕЛПАНИ ПЛС) НЕ РОБИТ(
import pymem
import pymem.process
import keyboard
import time
from threading import Thread
dwEntityList = (0x4DA3F5C)
m_bSpotted = (0x93D)
dwLocalPlayer = (0xD8C2CC)
m_iTeamNum = (0xF4)
dwGlowObjectManager = (0x52EC550)
m_iGlowIndex = (0xA438)
dwLocalPlayer = (0xD8C2CC)
m_flFlashMaxAlpha = (0xA41C)
dwForceJump = (0x524DEBC)
m_fFlags = (0x104)
glowesp = 0
bhop = 0
aimbot = 0
while True:
pm = pymem.Pymem('csgo.exe')
client = pymem.process.module_from_name(pm.process_handle, 'client.dll').lpBaseOfDll
while True:
if keyboard.is_pressed("end"):
print("----------Чит-Закрыт----------")
exit(0)
if keyboard.is_pressed('insert'):
print('Лист функций, для выключения используйте комбинацию снова.')
print('alt + G - GlowEsp T-Красные КТ-Синие')
print('alt + B - BHop')
print('alt + A - AimBot')
print(' ')
print('End - закрыть чит')
time.sleep(1)
if keyboard.is_pressed('alt+g'):
if glowesp == 0:
glowesp = 1
print('GlowEsp включен -' + str(glowesp))
time.sleep(0.2)
elif glowesp == 1:
glowesp = 0
print('GlowEsp выключен' + str(glowesp))
time.sleep(0.2)
if keyboard.is_pressed('alt+b'):
if bhop == 0:
print('BHop включен')
bhop = 1
time.sleep(0.2)
elif bhop == 1:
print('Bhop выключен')
bhop = 0
time.sleep(0.2)
def BHOP():
while True:
if keyboard.is_pressed('space') and bhop == 1:#BHOP
force_jump = client + dwForceJump
on_ground = pm.read_int(player_bhop + m_fFlags)
player_bhop = pm.read_int(client + dwLocalPlayer)
if player_bhop and on_ground and on_ground == 257:
pm.write_int(force_jump, 5)
time.sleep(0.08)
pm.write_int(force_jump, 4)
def ESP():
while True:
glow_manager = pm.read_int(client + dwGlowObjectManager)
for i in range(1, 32):
entity = pm.read_int(client + dwEntityList + i * 0x10)
if entity:
entity_team_id = pm.read_int(entity + m_iTeamNum)
entity_glow = pm.read_int(entity + m_iGlowIndex)
if entity_team_id == 2: # Terrorist
pm.write_float(glow_manager + entity_glow * 0x38 + 0x4, float(0))#R
pm.write_float(glow_manager + entity_glow * 0x38 + 0x8, float(0))#G
pm.write_float(glow_manager + entity_glow * 0x38 + 0xC, float(1))#B
pm.write_float(glow_manager + entity_glow * 0x38 + 0x10, float(1))#A
pm.write_int(glow_manager + entity_glow * 0x38 + 0x24, glowesp)#Enabling
elif entity_team_id == 3: # Counter-terrorist
pm.write_float(glow_manager + entity_glow * 0x38 + 0x4, float(0))#R
pm.write_float(glow_manager + entity_glow * 0x38 + 0x8, float(0))#G
pm.write_float(glow_manager + entity_glow * 0x38 + 0xC, float(1))#B
pm.write_float(glow_manager + entity_glow * 0x38 + 0x10, float(1))#A
pm.write_int(glow_manager + entity_glow * 0x38 + 0x24, glowesp)#Enabling
print("worked")
espThread = Thread(target=BHOP).start()
BHopThread = Thread(target=ESP).start()