Originally posted by Devious
I have scanned all offsets from a game and saved in a .ncm but I don't get what to do next. I seen this one guy do it over ccapi and with netcheat only , can some lead me here
You only use netcheat to find address' like health, money, rank, etc. You can't find things likes of god mode as there will be so many results (unless changing health).
But after searching for the values just copy the address (or offset) and do then set it using something like RTE
E.g. to change money it's probably
uint Address = 0x2348239; //This is the address.
uint Offset = 0x832; //The distance away from the address, you don't need for net cheat. But you said "offset" in your post so you may use?
int Amount = 10000000000; //new amount of money.
Lib.Extension.WriteInt32(Address+Offset, Amount);
Please note that's totally random offset and address, use the address' from netcheat.