
Originally Posted by
errol641
umm just find all snipers and do 560 - snipers = only weapons

so if i need to make all except AWM
Should be something like this :
Code:
for(int i=0; i<560-15; i++)
sorry i am not in home to try

Originally Posted by
michielr
Code:
if( knockback )
{
if(pWeaponMgr)
{
for(int i=0; i<560; i++)
{
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i))) != NULL && (Mutant))
*(float*)( Wep + (0x2788 + (4*y))) = (float)0;
}
}
}
Try this for knockback..
So u mean to make two loop or what ?
cuz u say in loop i
and in
Code:
( Wep + (0x2788 + (4*y)))
DWORD Wep = *(DWORD*)(*(DWORD*)(CShell+0xA68F90)+ (4*i); so 4*i = first loop I think and in the code 4*y = second loop
so u need two loop is am right ?
