no grenad dmg,no weapon weight
hey MPGH,here are source codes of no grenad dmg and no weapon weight.
no grenade dmg:
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;
}
}
no weapon weight:
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 + 0x1F88) = 0.0f;
}
}
credits to:snipermon for the info
enjoy!
NOTE:WITH SOME EDIT WITH GOOGLE!!!!!!!!