Вопрос Hey guys i have been trying to get the existedgit cheat to run

Начинающий
Статус
Оффлайн
Регистрация
11 Фев 2023
Сообщения
40
Реакции[?]
0
Поинты[?]
0
hey i tried to compile the cheat and i faced some problems and i fixed them but when i run dota 2 and inject the dll iam getting

Exception thrown at 0x00007FF89048E2F8 (Dota2Cheat.dll) in dota2.exe: 0xC0000005 : Access violation writing location 0x000000030000000F.

in this block of code that is located inside the CUTLVEctor.h file



iam trying to figure out if some 1 fixed it or not
after some debugging i found out that this line is the one responsible for the crash
this->UnitOrders().push_back(order.ToUnitOrders());
in CDOTAPLAYERController.h inside the PrepareOrder method.[/CODE]

asd:
void push_back(const T& elem) {
    m_Size++;
    adjust_capacity();


    print("m_Capacity: " + m_Capacity);
        m_pElements = CMemAlloc::Get()->Alloc<T>(m_Capacity * sizeof(T));
    if (m_Size == 1) {
        m_pElements[0] = element;
    }
    else {
        m_pElements[m_Size - 1] = elem;
    }



}[/CODE ]
 
Последнее редактирование:
Сверху Снизу