Originally posted by tuukkax
I think you missed my question here, and yes, I do know how to write an integer. Main question is, if I write 0x50, 0xFF, will it replace the value of 0x50 = 80 with 0xFF = 255 ??
Regards.
I don't get what you're trying to ask, but you don't look at them individually. You look at it as a whole.
For example;
If your address is 0x18475485 and default is something like.. BE 10 5B 11 FF 11 14 FF BE in the debugger and you use-
PS3.SetMemory(offset, new byte[] { 0x58, 0x20, 0xFF, 0xFF it will simply change the memory to;
58 20 FF FF FF 11 14 FF BE
I guess, in a way the 0xXX, 0xXX is to make it replace the original memory one byte at a time. Naturally you can make it write more then 4 bytes, depending on how long the default address is linked to or w/e.