No Reload Code
Hello coders wanted to ask for help with No Reload Code
good when I use it
the x-trap detected
and if I use this way
has no effect on the game which the correct way to do?
good when I use it
Code:
for(int i=0; i<600; i++){
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL){
*(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0xDC4) = 75.0f;
}
}
and if I use this way
Code:
for(int i=0; i<600; i++){
DWORD NoReload = *(DWORD*)(pWeaponMgr + (4*i));
if(NoReload){
*(float*)(NoReload + (0xDC4 + (4*i))) = 75.0f;
}
}