Подведи собственные итоги года совместно с YOUGAME и забери ценные призы! Перейти

ESP Python - не красит команды отдельно

Статус
В этой теме нельзя размещать новые ответы.
Начинающий
Начинающий
Статус
Оффлайн
Регистрация
9 Дек 2019
Сообщения
2
Реакции
0
Переписал чит с темы https://yougame.biz/threads/65629/ на python по приколу
Но есть проблема, чит красит всех одним цветом, если красный, то и кт и т будут красные и тд

Python:
Expand Collapse Copy
import pymem
import pymem.process
#offsets
dwEntityList = (0x4D3B72C)
dwGlowObjectManager = (0x527CF70)
m_iGlowIndex = (0xA428)
m_iTeamNum = (0xF4)
dwLocalPlayer = (0xD27ABC)

#found process
pm = pymem.Pymem("csgo.exe")
client = pymem.process.module_from_name(pm.process_handle, "client_panorama.dll").lpBaseOfDll

def main():
    while True:
        glowObj = pm.read_int(client + dwGlowObjectManager)
        myTeam = pm.read_int((client + dwLocalPlayer) + m_iTeamNum);
        for i in range(1,32):
            player = pm.read_int(client + dwEntityList + i * 0x10)
            if (player == 0):
                continue;
               
               
            team = pm.read_int(player + m_iTeamNum)
            if (team != 2 and team != 3):
                continue
            currentGlowIndex = pm.read_int(player + m_iGlowIndex)
            if (team != myTeam):
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x4, float(255))
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x8, float(0))
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0xC, float(0))
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x10, float(255))
                pm.write_int(glowObj + currentGlowIndex * 0x38 + 0x24, True)
                pm.write_int(glowObj + currentGlowIndex * 0x38 + 0x25, False);
               
               
            else:
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x4, float(0))
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x8, float(0))
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0xC, float(255))
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x10, float(255))
                pm.write_int(glowObj + currentGlowIndex * 0x38 + 0x24, True)
                pm.write_int(glowObj + currentGlowIndex * 0x38 + 0x25, False)
           
           
           
           
           
if __name__ == '__main__':
    main()
 
Переписал чит с темы https://yougame.biz/threads/65629/ на python по приколу
Но есть проблема, чит красит всех одним цветом, если красный, то и кт и т будут красные и тд

Python:
Expand Collapse Copy
import pymem
import pymem.process
#offsets
dwEntityList = (0x4D3B72C)
dwGlowObjectManager = (0x527CF70)
m_iGlowIndex = (0xA428)
m_iTeamNum = (0xF4)
dwLocalPlayer = (0xD27ABC)

#found process
pm = pymem.Pymem("csgo.exe")
client = pymem.process.module_from_name(pm.process_handle, "client_panorama.dll").lpBaseOfDll

def main():
    while True:
        glowObj = pm.read_int(client + dwGlowObjectManager)
        myTeam = pm.read_int((client + dwLocalPlayer) + m_iTeamNum);
        for i in range(1,32):
            player = pm.read_int(client + dwEntityList + i * 0x10)
            if (player == 0):
                continue;
             
             
            team = pm.read_int(player + m_iTeamNum)
            if (team != 2 and team != 3):
                continue
            currentGlowIndex = pm.read_int(player + m_iGlowIndex)
                if (team != myTeam):
                    pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x4, float(255))
                    pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x8, float(0))
                    pm.write_float(glowObj + currentGlowIndex * 0x38 + 0xC, float(0))
                    pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x10, float(255))
                    pm.write_int(glowObj + currentGlowIndex * 0x38 + 0x24, True)
                    pm.write_int(glowObj + currentGlowIndex * 0x38 + 0x25, False);
             
             
                if (team == myTeam):
                    pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x4, float(0))
                    pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x8, float(0))
                    pm.write_float(glowObj + currentGlowIndex * 0x38 + 0xC, float(255))
                    pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x10, float(255))
                    pm.write_int(glowObj + currentGlowIndex * 0x38 + 0x24, True)
                    pm.write_int(glowObj + currentGlowIndex * 0x38 + 0x25, False)
         
         
if __name__ == '__main__':
    main()
короче где team != myTeam - враги
team == myTeam - союзники
ток оффсеты поменяй
 
Такая же проблема(
 
Найди нормальный оффсет. Этот скорее всего просто неправильный
 
Как инжектить?
 
А может просто не писать софт на питоне?
1617959806399.png
заменить на client.dll
 
А может просто не писать софт на питоне?
Посмотреть вложение 142870заменить на client.dll
А может просто посмотреть на дату публикации темы и понять, что тогда ещё был client_panorama.dll?)


* 0x38 + 0x10 - это не цвет случаем? Если он, то они в обоих случаях одинаковы, надо поменять.
Если это не он, тогда что-то сломано в проверке на комманду.
 
А может просто посмотреть на дату публикации темы и понять, что тогда ещё был client_panorama.dll?)


* 0x38 + 0x10 - это не цвет случаем? Если он, то они в обоих случаях одинаковы, надо поменять.
Если это не он, тогда что-то сломано в проверке на комманду.
1617960402759.png
 
Была проблема но уже решил
 
измени m_iTeam
 
Блин вот то что все одним цветом это очень плохо
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
читы на питоне? звучит хайпово
 
Засчёт этого гайда написал свой первый чит, сяб
 
Отлично же
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
проблема в оффсетах
 
Переписал чит с темы https://yougame.biz/threads/65629/ на python по приколу
Но есть проблема, чит красит всех одним цветом, если красный, то и кт и т будут красные и тд

Python:
Expand Collapse Copy
import pymem
import pymem.process
#offsets
dwEntityList = (0x4D3B72C)
dwGlowObjectManager = (0x527CF70)
m_iGlowIndex = (0xA428)
m_iTeamNum = (0xF4)
dwLocalPlayer = (0xD27ABC)

#found process
pm = pymem.Pymem("csgo.exe")
client = pymem.process.module_from_name(pm.process_handle, "client_panorama.dll").lpBaseOfDll

def main():
    while True:
        glowObj = pm.read_int(client + dwGlowObjectManager)
        myTeam = pm.read_int((client + dwLocalPlayer) + m_iTeamNum);
        for i in range(1,32):
            player = pm.read_int(client + dwEntityList + i * 0x10)
            if (player == 0):
                continue;
              
              
            team = pm.read_int(player + m_iTeamNum)
            if (team != 2 and team != 3):
                continue
            currentGlowIndex = pm.read_int(player + m_iGlowIndex)
            if (team != myTeam):
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x4, float(255))
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x8, float(0))
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0xC, float(0))
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x10, float(255))
                pm.write_int(glowObj + currentGlowIndex * 0x38 + 0x24, True)
                pm.write_int(glowObj + currentGlowIndex * 0x38 + 0x25, False);
              
              
            else:
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x4, float(0))
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x8, float(0))
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0xC, float(255))
                pm.write_float(glowObj + currentGlowIndex * 0x38 + 0x10, float(255))
                pm.write_int(glowObj + currentGlowIndex * 0x38 + 0x24, True)
                pm.write_int(glowObj + currentGlowIndex * 0x38 + 0x25, False)
          
          
          
          
          
if __name__ == '__main__':
    main()

import offsets
import pymem
import pymem.process
def main():
print("запустился.")
pm = pymem.Pymem("csgo.exe")
client = pymem.process.module_from_name(pm.process_handle, "client.dll").lpBaseOfDll
while True:
glow_manager = pm.read_int(client + offsets.dwGlowObjectManager)
for i in range(1, 32):
entity = pm.read_int(client + offsets.dwEntityList + i * 0x10)
if entity:
entity_team_id = pm.read_int(entity + offsets.m_iTeamNum)
entity_glow = pm.read_int(entity + offsets.m_iGlowIndex)
if entity_team_id == 2: # Terrorist
pm.write_float(glow_manager + entity_glow * 0x38 + 0x4, float(1))
pm.write_float(glow_manager + entity_glow * 0x38 + 0x8, float(0))
pm.write_float(glow_manager + entity_glow * 0x38 + 0xC, float(0))
pm.write_float(glow_manager + entity_glow * 0x38 + 0x10, float(1))
pm.write_int(glow_manager + entity_glow * 0x38 + 0x24, 1)
elif entity_team_id == 3: # Counter-terrorist
pm.write_float(glow_manager + entity_glow * 0x38 + 0x4, float(0))
pm.write_float(glow_manager + entity_glow * 0x38 + 0x8, float(0))
pm.write_float(glow_manager + entity_glow * 0x38 + 0xC, float(1))
pm.write_float(glow_manager + entity_glow * 0x38 + 0x10, float(1))
pm.write_int(glow_manager + entity_glow * 0x38 + 0x24, 1)

if __name__ == '__main__':
main()
на тебе красит и библиотека с совсеми оофсетами кс го
 
да офните тему эту уже.
 
Статус
В этой теме нельзя размещать новые ответы.
Назад
Сверху Снизу