-
Автор темы
- #1
Кто может помочь сделать FakeLag для CS:GO?
Мой shitcode крашит её
Я ес чо новенький в питоне
Мой shitcode крашит её
Python:
import pymem
import pymem.process
import requests
import time
pm = pymem.Pymem("csgo.exe")
engine = pymem.process.module_from_name(pm.process_handle, "engine.dll").lpBaseOfDll
offsets = 'https://raw.githubusercontent.com/frk1/hazedumper/master/csgo.json'
response = requests.get(offsets).json()
dwbSendPackets = int(response["signatures"]["dwbSendPackets"])
def lag():
pm.write_int(engine + dwbSendPackets, 0)
time.sleep(16 * (1/64))
pm.write_int(engine + dwbSendPackets, 1)
time.sleep(1 * (1/64))
while True:
lag()
time.sleep(1)