C++ crossfire base
Hey MPGH. Iv been learning c++ for over 1year and WINAPI for some months. Now I need help. If someone could show me a working c++ base for crossfire where I could put things like This :
DWORD pWeaponsPtr = *(DWORD*)(hShell + 0x90A4B8);
if (pWeaponsPtr)
{
for (int i = 0; i < 512; i++)
{
DWORD pWeapon = *(DWORD*)(pWeaponsPtr + i * 4);
if (pWeapon)
continue;
*(float*)(pWeapon + 0x754) = 0.0f;
}
}
I would even pay for that
lol Sorry but I am begginer so culd you explain what this code does??