Here its necesary 1005F530 or 5F530 only?
[PHP]
#define first_adress 0x5F530

[/PHP]

This is the NOP function:
[PHP]void NOP( void* pxAddress, int size )
{
unsigned long Protection;
BYTE IWriteNoFunctions[ ] = {0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90};
VirtualProtect((void*)pxAddress, size, PAGE_READWRITE, &Protection);
memcpy((void*)pxAddress, (const void*)IWriteNoFunctions, size);
VirtualProtect((void*)pxAddress, size, Protection, 0);
}[/PHP]

This is the call to NOP function:
[PHP]NOP( ( void* )first_adress,2);[/PHP]

Im trying NOP two bytes of "first_adress", this is correct?

Thx