Вопрос Crash on GlowObjectManager

d-_-b
Пользователь
Статус
Оффлайн
Регистрация
16 Янв 2020
Сообщения
119
Реакции[?]
60
Поинты[?]
0
Trying to fix supremacy to latest update but I'm getting this crash? The signature is up to date.
The Crash:
1681094215383.png
Stack:
1681094227765.png
 
Начинающий
Статус
Оффлайн
Регистрация
15 Янв 2022
Сообщения
170
Реакции[?]
26
Поинты[?]
10K
your glowmanager is null.
Код:
    GetGlowObjectManager = pattern::find( m_client_dll, XOR( "0F 11 05 ? ? ? ? 83 C8 01" ) ).add(0x3).get().as< GetGlowObjectManager_t >( );//
    m_glow = *pattern::find( m_client_dll, XOR( "0F 11 05 ? ? ? ? 83 C8 01" ) ).add( 0x3 ).as< CGlowObjectManager** >( );//
Код:
#pragma once

#define END_OF_FREE_LIST    -1
#define ENTRY_IN_USE        -2

struct GlowObjectDefinition_t {
    int    m_next_free_slot;
    Entity *m_entity;
    vec3_t m_color;
    float  m_alpha;
    PAD( 0x8 );
    float  m_bloom_amount;
    PAD( 0x4 );
    bool   m_render_occluded;
    bool   m_render_unoccluded;
    bool   m_render_full_bloom;
    PAD( 0x1 );
    int    m_full_bloom_stencil;
    PAD( 0x4 );
    int    m_slot;
};

class CGlowObjectManager {
public:
    CUtlVector< GlowObjectDefinition_t >    m_object_definitions;
    int                                        m_first_free_slot;
};
 
d-_-b
Пользователь
Статус
Оффлайн
Регистрация
16 Янв 2020
Сообщения
119
Реакции[?]
60
Поинты[?]
0
The GlowManager crash was fixed, but now I'm getting a very weird crash...:
1681175620733.png
 
Начинающий
Статус
Оффлайн
Регистрация
15 Янв 2022
Сообщения
170
Реакции[?]
26
Поинты[?]
10K
Сверху Снизу