How to make PYTHON radarhack

ded78667

Newbie
Newbie
Newbie
Newbie
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
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()
Step №4:
1)Go to
You cant view this link please login.
and obfuscate your code
2)Compile the result
Step №6:
Run as administrator





Thanks to https://vk.com/i_sql for really good code
 

KriskoKInG

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Feb 15, 2021
Messages
8
Reaction score
1
thats a great guide but can u make it into video so the guys who don't rly understand what are u saying start understanding ;D tnx btw!!
 

gtft5r

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
May 22, 2021
Messages
3
Reaction score
0
cheating with python code looks very cool but why arent you using c# or c++?
 

Sentakuu

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Aug 7, 2021
Messages
1
Reaction score
0
NameError: name 'dwLocalPlayer' is not defined wat
 
Top