C++ PATTERNS CS2

Новичок
Статус
Оффлайн
Регистрация
26 Сен 2024
Сообщения
2
Реакции[?]
0
Поинты[?]
0
HOW CAN I FIND THESE PATTERNS FOR CS2

constexpr std::ptrdiff_t dwLocalPlayerPawn = 0x1825138;
constexpr std::ptrdiff_t dwGameEntitySystem_highestEntityIndex = 0x1520;
constexpr std::ptrdiff_t dwLocalPlayerController = 0x1A0D8E8;
 
Новичок
Статус
Оффлайн
Регистрация
26 Сен 2024
Сообщения
2
Реакции[?]
0
Поинты[?]
0

Пожалуйста, авторизуйтесь для просмотра ссылки.

Além disso, seus deslocamentos estão todos corretos.
dwGameEntitySystem_highestEntityIndex:
    int get_highest_entity_index()
    {
        static auto fn = reinterpret_cast<int(__thiscall*)(void*, int*)>(
            g_opcodes->scan(g_modules->m_modules.client_dll.get_name(), "33 DB E8 ? ? ? ? 8B 08")
        );

        int value = -1;
        fn(this, &value);

        return value;
    }

Estou recebendo esse deslocamento, mas ele retorna memória inválida, por quê?

public const nint dwGameEntitySystem_highestEntityIndex = 0x1520;
Estou usando esse deslocamento
 
Сверху Снизу