(adsbygoogle = window.adsbygoogle || []).push({});
Hello NGU, so I'm learning to make a RTM tool, and I have a doubt.
So basically this is
"the "main code thing"
Originally posted by another user
byte[] lol = new byte[] { 0x00 }; PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, OFFSET HERE, lol);
And I was looking for some offsets and found that godmode is:
Originally posted by another user
0x0FCA41E
So to set it on, it would be ("FF for god mode"), ("00 to take it off")
Then my code look like this:
Originally posted by another user
byte[] Godmodeon = new byte[] { 0xFF }; PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x0FCA41E, Godmodeon);
And off:
Originally posted by another user
byte[] Godmodeoff = new byte[] { 0x00 }; PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x0FCA41E, Godmodeoff);
So I went to test it, but no sucess, if anyone could help me it would be awesome, thanks.