nop
-
Автор темы
- #1
Первый раз делаю чит на апекс решил начать с glow на предметы, но почему-то крашит.
Помогите
Помогите
C++:
#include "Main.h"
DWORD64 GetEntityById(int Ent, DWORD64 Base)
{
DWORD64 EntityList = Base + OFFSET_ENTITYLIST;
DWORD64 BaseEntity = Read<DWORD64>(EntityList);
if (!BaseEntity)
return NULL;
return Read<DWORD64>(EntityList + (Ent << 5));
}
struct GlowMode
{
int8_t GeneralGlowMode, BorderGlowMode, BorderSize, TransparentLevel;
};
void MainFunc() {
DWORD base_address = (DWORD)GetModuleHandleA("r5apex.exe");
while (true)
{
for (int i = 0; i < 10000; i++)
{
DWORD64 Entity = GetEntityById(i, base_address);
if (Entity == 0)
continue;
int itemid = Read<int>(Entity + OFFSET_ITEM_ID);
if (itemid == 41 || itemid == 77 || itemid == 109) {
Write<int>(Entity + 0x3c8, 1);
Write<int>(Entity + 0x3d0, 2);
Write<GlowMode>(Entity + 0x2c4, { 101,102,46,96 });
Write<float>(Entity + 0x1d0, 0.f);
Write<float>(Entity + 0x1D4, 122.f);
Write<float>(Entity + 0x1D8, 122.f);
}
}
}
}
BOOL DllMain(HMODULE ModBase, DWORD CallReason, PVOID Reserv)
{
if (CallReason == DLL_PROCESS_ATTACH)
{
MainFunc();
}
return true;
}