Originally posted by mindcontrol
Hi I am making a RTM tool for a game and I was wondering how I would set a specific byte in a offset to a value.
For example*
SetMemory(0x00E24EA8, new byte[] { 0x05 });
but i want that 05 to be changed in the 8th byte of the offset not the first one. Sorry if this a noob question.
new byte[] { 0x00, 0x00, 0x00, 0x05 }
i think maybe lol