Начинающий
-
Автор темы
- #1
решил написать себе вх на питоне и что то не получилсь(
Python:
import pymem
import pymem.process
pm = pymem.Pymem("cs2.exe")
client = pymem.process.module_from_name(pm.process_handle, "client.dll")
dwGlowManager = pm.read_int(client.lpBaseOfDll + 0x19113E0) # glow
dwEntityList = pm.read_int(client.lpBaseOfDll + 0x18B3FA8) # entity
Glow_size = pm.read_int(client.lpBaseOfDll + 0x4)
def main():
glow()
def glow():
while True:
for i in range(0, 32):
glowObjectDefinition = pm.read_int(client.lpBaseOfDll + i * 0x10)
entityglowing = pm.read_int(glowObjectDefinition + 0x1440)
if dwEntityList:
pm.write_float(dwGlowManager + entityglowing * 0x38 + 0x8, float(0))
pm.write_float(dwGlowManager + entityglowing * 0x38 + 0xC, float(1))
pm.write_float(dwGlowManager + entityglowing * 0x38 + 0x10, float(0))
pm.write_float(dwGlowManager + entityglowing * 0x38 + 0x14, float(1))
pm.write_int(dwGlowManager + entityglowing * 0x38 + 0x28, 1)
if __name__ == '__main__':
main()