Hi I don't know if this is the right section because it is mostly about assembly.
I have a problem with injecting some assemble into CoD with vb.

The problem:
Code:
Nop(&H5BF5D9, &HC7)
NOP(&H5BF5D9 + 1, &H84)
NOP(&H5BF5D9 + 2, &H8F)
NOP(&H5BF5D9 + 3, &H34)
NOP(&H5BF5D9 + 4, &H3)
What it does is this:
Code:
005BF5D9:
mov [edi+ecx*4+00000334],63
The problem is that i am trying to make it inject 99 which in hex is 63. But no matter what number i try to inject it will say C7
Code:
Nop(&H5BF5D9, &HC7)
Because of that will it use some random number like
Code:
mov [edi+ecx*4+00000334],C67589D
I need to make it use 63 and not something random.