- Status
- Offline
- Joined
- Feb 15, 2021
- Messages
- 1
- Reaction score
- 1
Hello, in this tutorial I ll show you working radarhack made with Python 3.8
Step №1: Install python
1)Go to
2)Click "Downloads" --> "Download python v 3.8.x"
3)Open the executable file
Step №2: Install libraries
1)Open cmd
2)Type
Then you can optionally install requests -->
Step №3: Ctrl+c Ctrl+v this to your .py file
Step №4:
1)Go to
2)Compile the result
Step №6:
Run as administrator
Thanks to https://vk.com/i_sql for really good code
Step №1: Install python
1)Go to
You cant view this link please login.
2)Click "Downloads" --> "Download python v 3.8.x"
3)Open the executable file
Step №2: Install libraries
1)Open cmd
2)Type
pip install pymem
Then you can optionally install requests -->
pip install requests
Step №3: Ctrl+c Ctrl+v this to your .py file
Python:
import pymem, requests, pymem.process
from threading import Thread
'''
getting offsets if you installed requests library, else you must do it manually
url = 'https://raw.githubusercontent.com/frk1/hazedumper/master/csgo.json'
response = requests.get(url).json()
dwLocalPlayer = int(response["signatures"]["dwLocalPlayer"])
dwEntityList = int(response["signatures"]["dwEntityList"])
m_iTeamNum = int(response["netvars"]["m_iTeamNum"])
m_bSpotted = int(response["netvars"]["m_bSpotted"])
'''
pm = pymem.Pymem("csgo.exe") #finding game process
client = pymem.process.module_from_name(pm.process_handle, "client.dll").lpBaseOfDll
# defining function
def RadarHack():
while True:
if pm.read_int(client + dwLocalPlayer):
localplayer = pm.read_int(client + dwLocalPlayer)
localplayer_team = pm.read_int(localplayer + m_iTeamNum)
for i in range(64):
if pm.read_int(client + dwEntityList + i * 0x10):
entity = pm.read_int(client + dwEntityList + i * 0x10)
entity_team = pm.read_int(entity + m_iTeamNum)
if entity_team != localplayer_team:
pm.write_int(entity + m_bSpotted, 1)
Thread(target=RadarHack).start()
1)Go to
You cant view this link please login.
and obfuscate your code2)Compile the result
Step №6:
Run as administrator
Thanks to https://vk.com/i_sql for really good code